Files
svelte-mud/docker-compose.yml

22 lines
438 B
YAML
Raw Permalink Normal View History

2025-04-21 14:12:36 +02:00
version: '3.8'
services:
svelte-mud:
build:
context: .
dockerfile: Dockerfile
container_name: svelte-mud
restart: unless-stopped
2025-04-21 22:42:26 +02:00
networks:
2025-04-21 22:49:26 +02:00
- revproxy
2025-04-21 14:12:36 +02:00
environment:
- NODE_ENV=production
2025-04-21 23:43:50 +02:00
# No need to publish ports to host, but expose them to container network
expose:
- 3000
- 3001
2025-04-21 22:42:26 +02:00
# Define networks to connect to external services
networks:
2025-04-21 22:49:26 +02:00
revproxy:
2025-04-21 22:42:26 +02:00
external: true