Don't just expose things when in public.
Some checks failed
CI/CD / build-and-test (push) Has been cancelled

This commit is contained in:
Felipe Cotti 2024-12-01 16:43:24 -03:00
parent 5555f04014
commit 2aaad4cf96

View file

@ -20,6 +20,8 @@ services:
depends_on:
- mongo
restart: unless-stopped
networks:
- guestbooky
mongo:
image: mongo
@ -33,8 +35,13 @@ services:
- ./mongodb/mongod.conf:/etc/mongod.conf:ro
- mongodata:/data/db
command: ["mongod", "--config", "/etc/mongod.conf"]
ports:
- "27017:27017"
networks:
- guestbooky
volumes:
mongodata:
mongodata:
networks:
guestbooky:
driver: bridge