mirror of
https://github.com/stonith404/pingvin-share.git
synced 2024-11-04 23:10:13 +01:00
16 lines
398 B
YAML
16 lines
398 B
YAML
version: '3.8'
|
|
services:
|
|
pingvin-share:
|
|
image: stonith404/pingvin-share
|
|
restart: unless-stopped
|
|
ports:
|
|
- 3000:3000
|
|
environment:
|
|
- APP_URL=${APP_URL}
|
|
- SHOW_HOME_PAGE=${SHOW_HOME_PAGE}
|
|
- ALLOW_REGISTRATION=${ALLOW_REGISTRATION}
|
|
- MAX_FILE_SIZE=${MAX_FILE_SIZE}
|
|
- JWT_SECRET=${JWT_SECRET}
|
|
volumes:
|
|
- "${PWD}/data:/opt/app/backend/data"
|