19 lines
406 B
YAML
19 lines
406 B
YAML
|
services:
|
||
|
server:
|
||
|
image: git.okoyono.de/f/twins:latest
|
||
|
restart: unless-stopped
|
||
|
ports:
|
||
|
- 1965:1965
|
||
|
volumes:
|
||
|
- ./config:/app/config
|
||
|
- ./public_gmi:/public_gmi
|
||
|
|
||
|
december-adventure:
|
||
|
image: alpine:latest
|
||
|
restart: unless-stopped
|
||
|
ports:
|
||
|
- 9001:9001
|
||
|
volumes:
|
||
|
- ../zig-out/bin/:/run
|
||
|
command: ["sh", "-c", "cd /run && ./december-adventure-2024"]
|