This commit is contained in:
2026-01-12 00:53:54 +01:00
commit 2f827c168d
26 changed files with 3145 additions and 0 deletions

16
server/compose.yml Normal file
View File

@@ -0,0 +1,16 @@
services:
server:
build: .
ports:
- "3000:3000"
volumes:
# MAPPING: [Host Folder] : [Container Folder]
# You can change './party_images' to whatever folder on your laptop you want.
- ./party_images:/app/uploads
environment:
# We FORCE the internal path to match the volume mount above.
# This overrides whatever is in your .env file for safety.
- UPLOAD_DIR=/app/uploads
- SERVER_HOST=0.0.0.0
- GALLERY_PASSWORD=partytime
restart: unless-stopped