init
This commit is contained in:
16
server/compose.yml
Normal file
16
server/compose.yml
Normal 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
|
||||
Reference in New Issue
Block a user