feat: add Docker and Nginx configuration, update favicon and icons, enhance image handling in views

This commit is contained in:
mrkad@rpi
2026-01-18 11:12:09 +07:00
parent 0be04a2594
commit 16a8d63dcb
12 changed files with 71 additions and 12 deletions

12
docker-compose.yml Normal file
View File

@@ -0,0 +1,12 @@
version: '3.8'
services:
photobooth:
image: nginx:alpine
container_name: photobooth
volumes:
- ./dist:/usr/share/nginx/html
- ./nginx.conf:/etc/nginx/conf.d/default.conf
ports:
- '8080:80'
restart: unless-stopped