From be19114f5aac6cd50f41475ef1ed7b9d4d2a3e86 Mon Sep 17 00:00:00 2001 From: Mikolaj Wojciech Gorski Date: Fri, 25 Jul 2025 00:00:10 +0200 Subject: [PATCH] forgot to update --- compose.yaml | 15 ++++++++++----- 1 file changed, 10 insertions(+), 5 deletions(-) diff --git a/compose.yaml b/compose.yaml index c12a969..ff818ee 100644 --- a/compose.yaml +++ b/compose.yaml @@ -5,13 +5,18 @@ services: dockerfile: Dockerfile container_name: scp-sl-server ports: - - 7777:7777/udp + - "7777:7777/udp" volumes: - - /home/oliwier/dockerData/scpsl/config:/home/steam/.config + - ./config:/home/steam/.config environment: - UID=1000 - GID=1000 - - STEAM_USER=thestopa - - STEAM_PASSWORD=${ST_PASSWORD} + # To set a timezone, uncomment the next line and change Etc/UTC to a TZ identifier from this [list](https://en.wikipedia.org/wiki/List_of_tz_database_time_zones#List). + # - TZ=Etc/UTC + # To download a specific version of the server, uncomment the next line and set the value to a valid manifest ID. + # - MANIFEST_ID=none + # If you need to use your own Steam credentials, uncomment and set the following variables. + # - STEAM_USER=your_steam_username + # - STEAM_PASSWORD=your_steam_password + # - STEAM_GUARD_CODE=your_2fa_code restart: unless-stopped -networks: {}