22 lines
357 B
YAML
22 lines
357 B
YAML
---
|
|
version: "3.7"
|
|
|
|
volumes:
|
|
database:
|
|
|
|
uploads:
|
|
|
|
logs:
|
|
|
|
services:
|
|
chibisafe:
|
|
image: chibisafe/chibisafe:latest
|
|
container_name: chibisafe
|
|
volumes:
|
|
- database:/home/node/chibisafe/database:rw
|
|
- uploads:/home/node/chibisafe/uploads:rw
|
|
- logs:/home/node/chibisafe/logs:rw
|
|
ports:
|
|
- 24424:8000
|
|
restart: always
|