Add double quotes to every port declaration

This commit is contained in:
Fabiano Martins 2025-02-10 20:07:08 -03:00
parent 1911c53289
commit c83e6828c9
7 changed files with 12 additions and 12 deletions

View File

@ -9,7 +9,7 @@ services:
command: server /data --console-address ":9001"
restart: always
ports:
- 5432:5432
- "5432:5432"
environment:
- MINIO_ROOT_USER=USER
- MINIO_ROOT_PASSWORD=PASSWORD

View File

@ -8,14 +8,14 @@ services:
- evolution-net
restart: always
ports:
- 3306:3306
- "3306:3306"
environment:
- MYSQL_ROOT_PASSWORD=root
- TZ=America/Bahia
volumes:
- mysql_data:/var/lib/mysql
expose:
- 3306
- "3306"
volumes:
mysql_data:

View File

@ -9,13 +9,13 @@ services:
command: ["postgres", "-c", "max_connections=1000"]
restart: always
ports:
- 5432:5432
- "5432:5432"
environment:
- POSTGRES_PASSWORD=PASSWORD
volumes:
- postgres_data:/var/lib/postgresql/data
expose:
- 5432
- "5432"
pgadmin:
image: dpage/pgadmin4:latest
@ -27,7 +27,7 @@ services:
volumes:
- pgadmin_data:/var/lib/pgadmin
ports:
- 4000:80
- "4000:80"
links:
- postgres

View File

@ -12,8 +12,8 @@ services:
volumes:
- rabbitmq_data:/var/lib/rabbitmq/
ports:
- 5672:5672
- 15672:15672
- "5672:5672"
- "15672:15672"
volumes:
rabbitmq_data:

View File

@ -11,7 +11,7 @@ services:
volumes:
- evolution_redis:/data
ports:
- 6379:6379
- "6379:6379"
volumes:
evolution_redis:

View File

@ -5,7 +5,7 @@ services:
build: .
restart: always
ports:
- 8080:8080
- "8080:8080"
volumes:
- evolution_instances:/evolution/instances
networks:
@ -13,7 +13,7 @@ services:
env_file:
- .env
expose:
- 8080
- "8080"
volumes:
evolution_instances:

View File

@ -20,7 +20,7 @@ services:
NEW_RELIC_LOG: stdout
NODE_ENV: PROD
ports:
- 8080:8080
- "8080:8080"
volumes:
- evolution_instances:/evolution/instances
networks: