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" command: server /data --console-address ":9001"
restart: always restart: always
ports: ports:
- 5432:5432 - "5432:5432"
environment: environment:
- MINIO_ROOT_USER=USER - MINIO_ROOT_USER=USER
- MINIO_ROOT_PASSWORD=PASSWORD - MINIO_ROOT_PASSWORD=PASSWORD

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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