summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorfrederic-loui <frederic.loui@gmail.com>2016-10-12 16:45:16 +0200
committerGitHub <noreply@github.com>2016-10-12 16:45:16 +0200
commitcdcc4de05c33504c1542d78363fb75b78d3fc45d (patch)
treec97a47e6998b50532e430f2eab883553ffa20f92
parentd6a6d896ae7f07489eb1e038edd4e6fdfca8478e (diff)
Update README.md
Added correction related to issue #445 and docker-compose file example
-rw-r--r--README.md18
1 files changed, 18 insertions, 0 deletions
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`