gancio/docs/docker/sqlite/docker-compose.yml
2021-07-01 12:20:30 +02:00

18 lines
391 B
YAML

version: '3'
services:
gancio:
build: .
restart: always
image: node:buster
container_name: gancio
environment:
- PATH=$PATH:/home/node/.yarn/bin
- GANCIO_DATA=/home/node/data
- NODE_ENV=production
entrypoint: /entrypoint.sh
command: gancio start --docker
volumes:
- ./data:/home/node/data
ports:
- "127.0.0.1:13120:13120"