dayzdockerserver/docker-compose.yml
Daniel Ceregatti 53dea0f45d Second working version with vite-express integration.
Replace Bootstrap with Privemue.
Add i18n support. English and Brazilian Portuguese to start.
New UI with Primevue. Use tabbed menu, nice theme, etc..
WIP with Steam login.
2024-07-29 07:54:16 -07:00

35 lines
685 B
YAML

volumes:
# Only in the web container.
# For steamcmd files and resource files used by the scripts.
homedir_main:
# Shared by all containers.
# Mods.
mods:
# Server files
serverfiles:
# Upstream mission files
mpmissions:
services:
web:
build:
context: web
args:
- USER_ID
user: ${USER_ID}
hostname: dayzdockerserver
volumes:
- homedir_main:/home/user
- serverfiles:/serverfiles
- mpmissions:/serverfiles/mpmissions
- mods:/serverfiles/steamapps/workshop/content
- mods:/mods
- ./files:/files
- ./web:/web
ports:
- "8000:8000/tcp"
restart: no
env_file:
- .env