mirror of
https://framagit.org/les/gancio.git
synced 2025-02-01 09:02:01 +01:00
31 lines
744 B
YAML
31 lines
744 B
YAML
version: '3'
|
|
|
|
services:
|
|
db:
|
|
image: postgres
|
|
container_name: postgres
|
|
volumes:
|
|
- db:/var/lib/postgres
|
|
- /etc/localtime:/etc/localtime:ro
|
|
environment:
|
|
- POSTGRES_USER=gancio
|
|
- POSTGRES_DB=gancio
|
|
- POSTGRES_PASSWORD=gancio
|
|
restart: always
|
|
ports:
|
|
- 5432:5432
|
|
gancio:
|
|
build: .
|
|
image: node:latest
|
|
environment:
|
|
- DEBUG=*,-babel,-follow-redirects,-send,-body-parser:*,-express:*,-connect:*,-sequelize:*
|
|
container_name: gancio
|
|
restart: always
|
|
command: gancio start --docker --db=postgres
|
|
volumes:
|
|
- ./config.json:/opt/gancio/config.json
|
|
- ./uploads:/opt/gancio/uploads
|
|
depends_on:
|
|
- db
|
|
ports:
|
|
- "localhost:13120:13120"
|