-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdocker-compose.yml
48 lines (44 loc) · 979 Bytes
/
docker-compose.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
services:
smoo:
image: ghcr.io/sanae6/smo-online-server:latest
container_name: smoo
stdin_open: true
networks:
- smoo
restart: unless-stopped
environment:
- PUID=1000
- PGID=1000
- TZ=Europe/Berlin
ports:
- "1027:1027"
volumes:
- smoo:/data
odysseywebserver:
image: ghcr.io/grafdimenzio/odysseywebserver:latest
container_name: odysseywebserver
networks:
- smoo
restart: unless-stopped
environment:
- PUID=1000
- PGID=1000
- TZ=Europe/Berlin
- TOKEN=SECURETOKEN
- SERVER=smoo
- PORT=1027
- UPDATEFREQUENCY=100
- UPDATEFLIPPEDPLAYERSFREQUENCY=-1
- ONLYREQUESTWHENNECESSARY=true
- SERVERNAME=My Odyssey Server
- ACCOUNTNAME=admin
- ACCOUNTPASSWORD=PASSWORD
ports:
- "8080:8080"
volumes:
- odysseywebserver:/data
networks:
smoo:
volumes:
smoo:
odysseywebserver: