akhashic-record/safe/docker-compose.yml

22 lines
357 B
YAML
Raw Normal View History

2024-02-15 04:37:49 +00:00
---
version: "3.7"
2024-02-15 11:49:16 +00:00
volumes:
database:
uploads:
logs:
2024-02-15 04:37:49 +00:00
services:
chibisafe:
image: chibisafe/chibisafe:latest
container_name: chibisafe
volumes:
2024-02-15 11:49:16 +00:00
- database:/home/node/chibisafe/database:rw
- uploads:/home/node/chibisafe/uploads:rw
- logs:/home/node/chibisafe/logs:rw
2024-02-15 04:37:49 +00:00
ports:
2024-02-15 11:49:16 +00:00
- 24424:8000
2024-02-15 05:25:02 +00:00
restart: always