mirror of
https://ceregatti.org/git/daniel/dayzdockerserver.git
synced 2025-06-23 20:41:18 +00:00
Add debugging comments.
This commit is contained in:
parent
38e4434bd5
commit
b3781c2fcd
1 changed files with 8 additions and 3 deletions
|
@ -11,6 +11,9 @@ services:
|
||||||
|
|
||||||
main:
|
main:
|
||||||
build: .
|
build: .
|
||||||
|
volumes:
|
||||||
|
- homedir:/home/user
|
||||||
|
- ./files:/files
|
||||||
# To have the server show up in the LAN tab of the DayZ launcher,
|
# To have the server show up in the LAN tab of the DayZ launcher,
|
||||||
# it must run under host mode.
|
# it must run under host mode.
|
||||||
network_mode: host
|
network_mode: host
|
||||||
|
@ -27,9 +30,11 @@ services:
|
||||||
# Allows attaching a debugger from the host
|
# Allows attaching a debugger from the host
|
||||||
# cap_add:
|
# cap_add:
|
||||||
# - SYS_PTRACE
|
# - SYS_PTRACE
|
||||||
|
# Allows core files to be created within the container. These are VERY LARGE! Enable only for debugging!
|
||||||
|
# ulimits:
|
||||||
|
# core:
|
||||||
|
# soft: -1
|
||||||
|
# hard: -1
|
||||||
# Do nothing instead of starting the server, which is the default.
|
# Do nothing instead of starting the server, which is the default.
|
||||||
# Helpful for development or debugging.
|
# Helpful for development or debugging.
|
||||||
# command: tail -f /dev/null
|
# command: tail -f /dev/null
|
||||||
volumes:
|
|
||||||
- homedir:/home/user
|
|
||||||
- ./files:/files
|
|
||||||
|
|
Loading…
Add table
Reference in a new issue