mirror of
https://ceregatti.org/git/daniel/dayzdockerserver.git
synced 2025-05-07 14:51:17 +00:00

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.
35 lines
685 B
YAML
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
|