mirror of
https://github.com/stonith404/pingvin-share.git
synced 2024-11-05 07:20:13 +01:00
fddad3ef70
* add first concept * remove setup status * split config page in multiple components * add custom branding docs * add test email button * fix invalid email from header * add migration * mount images to host * update docs * remove unused endpoint * run formatter
20 lines
599 B
YAML
20 lines
599 B
YAML
version: '3.8'
|
||
services:
|
||
pingvin-share:
|
||
image: stonith404/pingvin-share
|
||
restart: unless-stopped
|
||
ports:
|
||
- 3000:3000
|
||
volumes:
|
||
- "./data:/opt/app/backend/data"
|
||
- "./data/images:/opt/app/frontend/public/img"
|
||
# Optional: If you add ClamAV, uncomment the following to have ClamAV start first.
|
||
# depends_on:
|
||
# clamav:
|
||
# condition: service_healthy
|
||
# Optional: Add ClamAV (see README.md)
|
||
# ClamAV is currently only available for AMD64 see https://github.com/Cisco-Talos/clamav/issues/482
|
||
# clamav:
|
||
# restart: unless-stopped
|
||
# image: clamav/clamav
|