docker-compose.yaml 588 B

123456789101112131415161718192021222324
  1. # docker-compose.yaml
  2. services:
  3. fourget:
  4. image: luuul/4get:latest
  5. restart: unless-stopped
  6. environment:
  7. - FOURGET_PROTO=http
  8. - FOURGET_SERVER_NAME=4get.ca
  9. - FOURGET_FPLAY_EXTERNAL_ENDPOINT=http://fourplay:3000
  10. - FOURGET_FPLAY_PASSWORD=cnc
  11. - FOURGET_FPLAY_TIMEOUT=30000
  12. - FOURGET_FPLAY_ENABLE_API=true
  13. ports:
  14. - "80:80"
  15. fourplay:
  16. image: luuul/4get-4play:latest
  17. environment:
  18. - FOURPLAY_PORT=3030
  19. - FOURPLAY_PASSWORD=cnc
  20. - FOURPLAY_COMMAND_TIMEOUT=5000
  21. ports:
  22. - "3000:3000"
  23. - "3030:3030"