18 lines
624 B
YAML
18 lines
624 B
YAML
services:
|
|
scp-sl-server:
|
|
build:
|
|
context: .
|
|
dockerfile: Dockerfile
|
|
container_name: scp-sl-server
|
|
ports:
|
|
- "7777:7777/udp"
|
|
volumes:
|
|
- ./config:/home/steam/.config
|
|
environment:
|
|
- UID=1000
|
|
- GID=1000
|
|
# 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
|
|
restart: unless-stopped
|