Small text-based online game — a HAL mesh module
Nie możesz wybrać więcej, niż 25 tematów Tematy muszą się zaczynać od litery lub cyfry, mogą zawierać myślniki ('-') i mogą mieć do 35 znaków.

20 wiersze
521B

  1. services:
  2. txt-game:
  3. build: .
  4. restart: unless-stopped
  5. environment:
  6. - DOMAIN=${DOMAIN:-localhost}
  7. labels:
  8. - "traefik.enable=true"
  9. - "traefik.http.routers.txt-game.rule=Host(`txt.${DOMAIN:-localhost}`)"
  10. - "traefik.http.routers.txt-game.entrypoints=websecure"
  11. - "traefik.http.routers.txt-game.tls.certresolver=letsencrypt"
  12. - "traefik.http.services.txt-game.loadbalancer.server.port=3000"
  13. networks:
  14. - proxy
  15. - default
  16. networks:
  17. proxy:
  18. external: true