You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
19 lines
437 B
19 lines
437 B
version: '3' |
|
|
|
services: |
|
gancio: |
|
build: |
|
context: . |
|
args: |
|
- GANCIO_VERSION=dev |
|
restart: always |
|
image: gancio:latest |
|
container_name: gancio |
|
user: 110:65534 |
|
command: gancio start --docker --db=sqlite |
|
environment: |
|
- DEBUG=*,-babel,-follow-redirects,-send,-body-parser:*,-express:*,-connect:*,-sequelize:* |
|
volumes: |
|
- ./data:/opt/gancio |
|
ports: |
|
- "127.0.0.1:13120:13120"
|
|
|