2025-07-22 17:23:13 -04:00
|
|
|
services:
|
|
|
|
|
client:
|
|
|
|
|
build: .
|
|
|
|
|
container_name: client
|
|
|
|
|
restart: unless-stopped
|
|
|
|
|
ports:
|
|
|
|
|
- "3000:3000"
|
|
|
|
|
environment:
|
|
|
|
|
NODE_ENV: production
|
2025-07-23 18:00:28 +00:00
|
|
|
volumes:
|
2025-07-23 18:09:26 -04:00
|
|
|
- /var/run/docker.sock:/var/run/docker.sock
|
2025-07-24 17:00:15 -04:00
|
|
|
|
|
|
|
|
cms:
|
|
|
|
|
build: ./cms
|
|
|
|
|
image: alliances-cms
|
|
|
|
|
ports:
|
|
|
|
|
- "3001:1111"
|
|
|
|
|
environment:
|
|
|
|
|
- NODE_ENV=production
|
|
|
|
|
- TOKEN_SECRET_KEY=${TOKEN_SECRET_KEY}
|
|
|
|
|
- DB_PATH=${DB_PATH}
|
|
|
|
|
env_file: .env
|
|
|
|
|
volumes:
|
|
|
|
|
- alliance_volume:/app/.manifest
|
|
|
|
|
- /var/run/docker.sock:/var/run/docker.sock
|
|
|
|
|
|
|
|
|
|
volumes:
|
|
|
|
|
alliances_volume:
|