22 lines
438 B
YAML
22 lines
438 B
YAML
version: '3.8'
|
|
|
|
services:
|
|
svelte-mud:
|
|
build:
|
|
context: .
|
|
dockerfile: Dockerfile
|
|
container_name: svelte-mud
|
|
restart: unless-stopped
|
|
networks:
|
|
- revproxy
|
|
environment:
|
|
- NODE_ENV=production
|
|
# No need to publish ports to host, but expose them to container network
|
|
expose:
|
|
- 3000
|
|
- 3001
|
|
|
|
# Define networks to connect to external services
|
|
networks:
|
|
revproxy:
|
|
external: true |