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