You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
19 lines
415 B
19 lines
415 B
version: '3.8'
|
|
|
|
services:
|
|
safe:
|
|
# image: lolisafe/lolisafe
|
|
build: .
|
|
volumes:
|
|
- ./config.js:/usr/src/lolisafe/config.js:ro
|
|
- ./database:/usr/src/lolisafe/database
|
|
- "${UPLOAD_DIR:-./uploads}:/usr/src/lolisafe/uploads"
|
|
ports:
|
|
- "${PORT:-9999}:9999"
|
|
depends_on:
|
|
- clamav
|
|
restart: unless-stopped
|
|
|
|
clamav:
|
|
image: tiredofit/clamav
|
|
restart: unless-stopped
|
|
|