Adaptación del Docker publicado en https://git.sindominio.net/gancio/docker-gancio para su uso en Estibadores
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
379 B
17 lines
379 B
![]()
9 months ago
|
version: '3'
|
||
|
|
||
|
services:
|
||
|
gancio:
|
||
|
build: .
|
||
|
image: gancio:latest
|
||
|
restart: always
|
||
|
container_name: gancio
|
||
|
user: 114:65534
|
||
|
command: gancio start --docker --db=sqlite
|
||
|
volumes:
|
||
|
- ./data/db.sqlite:/opt/gancio/db.sqlite
|
||
|
- ./data/config.json:/opt/gancio/config.json
|
||
|
- ./uploads:/opt/gancio/uploads
|
||
|
ports:
|
||
|
- "127.0.0.1:13120:13120"
|