Arrivals Board

This commit is contained in:
James Pattinson
2025-10-21 19:53:32 +00:00
parent ad2bdef3d8
commit f580d0fbf7
4 changed files with 723 additions and 0 deletions

View File

@@ -57,6 +57,21 @@ services:
networks:
- ppr_network
# Nginx web server for public frontend
web:
image: nginx:alpine
container_name: ppr_nextgen_web
restart: unless-stopped
ports:
- "8082:80" # Public web interface
volumes:
- ./web:/usr/share/nginx/html
- ./nginx.conf:/etc/nginx/nginx.conf
depends_on:
- api
networks:
- ppr_network
volumes:
mysql_data: