15 lines
329 B
YAML
15 lines
329 B
YAML
|
---
|
||
|
version: "3.7"
|
||
|
|
||
|
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:24424
|
||
|
restart: unless-stopped
|