Bang/docker/docker-compose.yml

24 lines
416 B
YAML
Raw Normal View History

2025-02-27 11:44:25 -06:00
services:
bang-web-server:
env_file:
- .env
2025-02-27 11:44:25 -06:00
build:
context: ../
dockerfile: docker/Dockerfile
2025-02-27 11:44:25 -06:00
container_name: bang
domainname: ${DOMAIN}
2025-02-27 11:44:25 -06:00
networks:
- ${NETWORK}
hostname: bang
2025-02-27 11:44:25 -06:00
ports:
- ${PORT}:${PORT}
2025-02-27 11:44:25 -06:00
tty: true
restart: unless-stopped
volumes:
- ../:/app
2025-02-27 12:28:50 -06:00
command: serve -s /app/dist -l 5000
2025-02-27 11:44:25 -06:00
networks:
${NETWORK}:
2025-02-27 11:44:25 -06:00
external: true