cc-web/docker-compose.yml
2025-04-14 22:26:54 +00:00

23 lines
432 B
YAML

services:
cc-web:
build: .
container_name: cc-web
restart: always
environment:
- NODE_ENV=production
- VIRTUAL_HOST=cc.johntsai.online
- LETSENCRYPT_HOST=cc.johntsai.online
- LETSENCRYPT_EMAIL=john@johntsai.online
expose:
- "3000"
volumes:
- ./data:/app/data
- ./public/images:/app/public/images
networks:
- proxy
networks:
proxy:
external: true