From cdcc4de05c33504c1542d78363fb75b78d3fc45d Mon Sep 17 00:00:00 2001 From: frederic-loui Date: Wed, 12 Oct 2016 16:45:16 +0200 Subject: Update README.md Added correction related to issue #445 and docker-compose file example --- README.md | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) diff --git a/README.md b/README.md index 166cce8..c348573 100644 --- a/README.md +++ b/README.md @@ -288,6 +288,24 @@ _Note: this step in only needed for creating Oxidized's configuration file and c ``` docker run --rm -v /etc/oxidized:/root/.config/oxidized -p 8888:8888/tcp -t oxidized/oxidized:latest oxidized ``` +If the RESTful API and Web Interface are enabled, on the docker host running the container +edit /etc/oxidized/config and modify 'rest: 127.0.0.1:8888' by 'rest: 0.0.0.0:8888' +this will bind port 8888 to all interfaces then expose port out. (Issue #445) + +You can also use docker-compose to launch oxidized container: +``` +# docker-compose.yml +# docker-compose file example for oxidized that will start along with docker daemon +oxidized: + restart: always + image: oxidized/oxidized:latest + ports: + - 8888:8888/tcp + environment: + CONFIG_RELOAD_INTERVAL: 600 + volumes: + - /etc/oxidized:/root/.config/oxidized +``` create the `/etc/oxidized/router.db` -- cgit v1.2.1