mirror of
https://framagit.org/les/gancio.git
synced 2025-02-01 09:02:01 +01:00
17 lines
343 B
YAML
17 lines
343 B
YAML
version: '3'
|
|
|
|
services:
|
|
gancio:
|
|
build: .
|
|
image: node:latest
|
|
container_name: gancio
|
|
command: gancio start --docker --db=sqlite
|
|
volumes:
|
|
- ./db.sqlite:/opt/gancio/db.sqlite
|
|
- ./config.json:/opt/gancio/config.json
|
|
- ./uploads:/opt/gancio/uploads
|
|
ports:
|
|
- 13120:13120
|
|
volumes:
|
|
db:
|
|
gancio:
|