diff options
Diffstat (limited to 'docker-compose.yaml')
-rw-r--r-- | docker-compose.yaml | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/docker-compose.yaml b/docker-compose.yaml index 87454e2..1f5d60e 100644 --- a/docker-compose.yaml +++ b/docker-compose.yaml @@ -2,7 +2,7 @@ services: mongo: image: mongo:latest ports: - - "27017:27017" + - "127.0.0.1:27017:27017" environment: MONGO_INITDB_ROOT_USERNAME: forms-backend MONGO_INITDB_ROOT_PASSWORD: forms-backend @@ -22,7 +22,7 @@ services: - mongo - snekbox ports: - - "8000:8000" + - "127.0.0.1:8000:8000" environment: - DATABASE_URL=mongodb://forms-backend:forms-backend@mongo:27017 - SNEKBOX_URL=http://snekbox:8060/eval |