10 lines
182 B
Bash
Executable File
10 lines
182 B
Bash
Executable File
#!/bin/sh
|
|
|
|
docker run \
|
|
--detach \
|
|
--publish 8086:8086 \
|
|
--volume /srv/influx:/var/lib/influxdb2 \
|
|
--restart unless-stopped \
|
|
--name influx \
|
|
influxdb:latest
|