25 lines
588 B
YAML
25 lines
588 B
YAML
# docker-compose.yaml
|
|
|
|
services:
|
|
fourget:
|
|
image: luuul/4get:latest
|
|
restart: unless-stopped
|
|
environment:
|
|
- FOURGET_PROTO=http
|
|
- FOURGET_SERVER_NAME=4get.ca
|
|
- FOURGET_FPLAY_EXTERNAL_ENDPOINT=http://fourplay:3000
|
|
- FOURGET_FPLAY_PASSWORD=cnc
|
|
- FOURGET_FPLAY_TIMEOUT=30000
|
|
- FOURGET_FPLAY_ENABLE_API=true
|
|
ports:
|
|
- "80:80"
|
|
fourplay:
|
|
image: luuul/4get-4play:latest
|
|
environment:
|
|
- FOURPLAY_PORT=3030
|
|
- FOURPLAY_PASSWORD=cnc
|
|
- FOURPLAY_COMMAND_TIMEOUT=5000
|
|
ports:
|
|
- "3000:3000"
|
|
- "3030:3030"
|