Projet_Web_IceBreaker/docker-compose.yml
Timeo Bossuet 0349aeaf5b fix: resolve leaderboard loading issue and add favicon
- Fix volume initialization causing NaN error that blocked JS execution
- Add null checks and error handling in storage module
- Defer AudioContext creation until user interaction
- Add ship emoji as favicon on all pages
2026-01-11 11:44:07 +01:00

17 lines
359 B
YAML

services:
nginx:
image: nginx:alpine
container_name: icebreaker-nginx
restart: always
volumes:
- ./src:/usr/share/nginx/html:ro
environment:
- VIRTUAL_HOST=${NGINX_HOST}
- LETSENCRYPT_HOST=${NGINX_HOST}
- LETSENCRYPT_EMAIL=${LETSENCRYPT_EMAIL}
networks:
- webnet
networks:
webnet:
external: true