babillard/docker-compose.yaml

14 lines
284 B
YAML
Raw Normal View History

2023-05-05 17:40:28 -04:00
services:
server:
restart: unless-stopped
build: .
image: git.agecem.com/agecem/babillard:latest
ports:
- '8080:8080'
volumes:
2023-05-05 17:48:42 -04:00
- 'config:/app/config'
2023-05-05 17:40:28 -04:00
command: ['babillard', 'server', '--config', '/app/config/.babillard.yaml']
volumes:
2023-05-05 17:48:42 -04:00
config: