From d607e9c3edbef3229cb2801656bfe93297004576 Mon Sep 17 00:00:00 2001 From: Stuart Johnson Date: Fri, 13 Jan 2017 04:08:37 +0000 Subject: [PATCH] Add default network to docker start args For me, it defaulted to localhost, which failed to expose the ports externally. --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index bbc506e8..e61e6d39 100644 --- a/Dockerfile +++ b/Dockerfile @@ -40,4 +40,4 @@ VOLUME /root/.openbazaar VOLUME /ssl ENTRYPOINT ["/docker-entrypoint.sh"] -CMD ["python", "openbazaard.py", "start"] +CMD ["python", "openbazaard.py", "start", "-a 0.0.0.0"]