Skip to content

Commit

Permalink
[core] Do not expose by default
Browse files Browse the repository at this point in the history
  • Loading branch information
devlikepro committed Sep 29, 2024
1 parent f4d7776 commit 2bd3147
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions docker-compose.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ services:
# The second port must be the same as WHATSAPP_API_PORT or 3000 by default
# Consider using the same port for simplicity
ports:
- '3000:3000/tcp'
- '127.0.0.1:3000:3000/tcp'
# NOTE: if you're using HTTP, you can use the following port mapping
#- '80:3000/tcp'
# NOTE: if you're using HTTPS, you can use the following port mapping
Expand Down Expand Up @@ -53,7 +53,7 @@ services:
image: mongo
container_name: mongodb
ports:
- '27017:27017/tcp'
- '127.0.0.1:27017:27017/tcp'
volumes:
- mongodb_data:/data/db
restart: always
Expand All @@ -66,8 +66,8 @@ services:
container_name: minio
restart: always
ports:
- '9000:9000'
- '9001:9001'
- '127.0.0.1:9000:9000'
- '127.0.0.1:9001:9001'
environment:
MINIO_REGION: 'eu-west-2'
MINIO_ROOT_USER: 'minioadmin'
Expand Down

0 comments on commit 2bd3147

Please sign in to comment.