Files
golunteer/compose.yaml
2025-02-04 20:57:48 +01:00

25 lines
452 B
YAML

services:
app:
image: z1glr/golunteer:latest
build: .
ports:
- 80:80
volumes:
- database:/usr/bin/app/data
- logs:/usr/bin/app/logs
- ./config.yaml:/usr/bin/app/config.yaml
restart: unless-stopped
volumes:
database:
driver: local
driver_opts:
type: none
device: "./data"
o: bind
logs:
driver: local
driver_opts:
type: none
device: "./logs"
o: bind