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.
17 lines
462 B
17 lines
462 B
version: '3' |
|
|
|
services: |
|
gancio: |
|
build: . |
|
restart: always |
|
image: gancio:latest |
|
container_name: gancio |
|
command: gancio start --docker --db=sqlite |
|
environment: |
|
- DEBUG=*,-babel,-follow-redirects,-send,-body-parser:*,-express:*,-connect:*,-sequelize:* |
|
volumes: |
|
- ./db.sqlite:/opt/gancio/db.sqlite |
|
- ./config.json:/opt/gancio/config.json |
|
- ./uploads:/opt/gancio/uploads |
|
ports: |
|
- "127.0.0.1:13120:13120"
|
|
|