Small text-based online game — a HAL mesh module
No puede seleccionar más de 25 temas Los temas deben comenzar con una letra o número, pueden incluir guiones ('-') y pueden tener hasta 35 caracteres de largo.

20 líneas
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