We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 296f8a6 commit da0e6e7Copy full SHA for da0e6e7
docker-compose.yaml
@@ -1,3 +1,5 @@
1
+version: "3.8"
2
+
3
services:
4
evolution-api:
5
container_name: thae_evolution_api
@@ -7,7 +9,7 @@ services:
7
9
- redis
8
10
- evolution-postgres
11
ports:
- - "127.0.0.1:${PORT:-8080}:8080" # Usa la variable PORT o 8080 por defecto
12
+ - "127.0.0.1:18080:8080" # API PROD expuesta en 18080, interno sigue en 8080
13
volumes:
14
- evolution_instances:/evolution/instances
15
networks:
@@ -23,7 +25,7 @@ services:
23
25
image: evoapicloud/evolution-manager:latest
24
26
restart: always
27
- - "${FRONTEND_PORT:-3001}:80" # También puedes parametrizar el frontend
28
+ - "3001:80" # Frontend PROD en 3001
29
30
- ./nginx.evolution.conf:/etc/nginx/conf.d/nginx.conf:ro
31
0 commit comments