- 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
17 lines
359 B
YAML
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
|