48 lines
1.1 KiB
YAML
48 lines
1.1 KiB
YAML
services:
|
|
|
|
db:
|
|
image: 'docker.io/library/postgres:14.8'
|
|
environment:
|
|
POSTGRES_DATABASE: "${BOTTINAGENDA_POSTGRES_DATABASE}"
|
|
POSTGRES_PASSWORD: "${BOTTINAGENDA_POSTGRES_PASSWORD}"
|
|
POSTGRES_USER: "${BOTTINAGENDA_POSTGRES_USER}"
|
|
volumes:
|
|
- 'db-data:/var/lib/postgresql/data'
|
|
restart: 'unless-stopped'
|
|
|
|
api:
|
|
depends_on:
|
|
- db
|
|
build: .
|
|
image: 'git.agecem.com/agecem/bottin-agenda/bottin-agenda-v2:latest'
|
|
ports:
|
|
- '1313:1313'
|
|
volumes:
|
|
- 'api-config:/etc/bottin-agenda'
|
|
restart: 'unless-stopped'
|
|
command: ['bottin-agenda', '--config', '/etc/bottin-agenda/api.yaml', 'api']
|
|
|
|
web:
|
|
depends_on:
|
|
- api
|
|
build: .
|
|
image: 'git.agecem.com/agecem/bottin-agenda/bottin-agenda-v2:latest'
|
|
ports:
|
|
- '2313:2313'
|
|
volumes:
|
|
- 'web-config:/etc/bottin-agenda'
|
|
restart: 'unless-stopped'
|
|
command: ['bottin-agenda', '--config', '/etc/bottin-agenda/web.yaml', 'web']
|
|
|
|
# adminer:
|
|
# image: adminer
|
|
# restart: always
|
|
# ports:
|
|
# - 8088:8080
|
|
# depends_on:
|
|
# - db
|
|
|
|
volumes:
|
|
db-data:
|
|
api-config:
|
|
web-config:
|