From 62354f2ab822f75adcb5a41a3da46a3cfb3fc9e7 Mon Sep 17 00:00:00 2001 From: Jason Kulatunga Date: Thu, 12 May 2022 07:40:14 -0700 Subject: [PATCH] created example omnibus docker-compose file. --- README.md | 2 +- .../{docker-compose.yml => example.omnibus.docker-compose.yml} | 3 ++- 2 files changed, 3 insertions(+), 2 deletions(-) rename docker/{docker-compose.yml => example.omnibus.docker-compose.yml} (83%) diff --git a/README.md b/README.md index 0280a90..3f342c5 100644 --- a/README.md +++ b/README.md @@ -71,7 +71,7 @@ Scrutiny uses `smartctl --scan` to detect devices/drives. If you're using Docker, getting started is as simple as running the following command: ```bash -docker run -it --rm -p 8080:8080 \ +docker run -it --rm -p 8080:8080 -p 8086:8086 \ -v `pwd`/scrutiny:/opt/scrutiny/config \ -v `pwd`/influxdb2:/opt/scrutiny/influxdb \ -v /run/udev:/run/udev:ro \ diff --git a/docker/docker-compose.yml b/docker/example.omnibus.docker-compose.yml similarity index 83% rename from docker/docker-compose.yml rename to docker/example.omnibus.docker-compose.yml index 7fd5de1..c1dd8a9 100644 --- a/docker/docker-compose.yml +++ b/docker/example.omnibus.docker-compose.yml @@ -7,7 +7,8 @@ services: cap_add: - SYS_RAWIO ports: - - "8080:8080" + - "8080:8080" # webapp + - "8086:8086" # influxDB admin volumes: - /run/udev:/run/udev:ro - ./config:/opt/scrutiny/config