Victor Lacasse-Beaudoin
a101d6a50d
Retirer exposition de port database (issue #25) Retirer section adminer en commentaires
40 lines
989 B
YAML
40 lines
989 B
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: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:latest'
|
|
ports:
|
|
- '2313:2313'
|
|
volumes:
|
|
- 'web-config:/etc/bottin-agenda'
|
|
restart: 'unless-stopped'
|
|
command: ['bottin-agenda', '--config', '/etc/bottin-agenda/web.yaml', 'web']
|
|
|
|
volumes:
|
|
db-data:
|
|
api-config:
|
|
web-config:
|