7fa4db7ab9
Ajouter POST /v2/transactions Valide si une transaction avec la même combinaison membre_id + is_perpetual existe déjà dans une des transactions proposées.
50 lines
1.1 KiB
YAML
50 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}"
|
|
ports:
|
|
- '5433:5432'
|
|
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']
|
|
|
|
adminer:
|
|
image: adminer
|
|
restart: always
|
|
ports:
|
|
- 8088:8080
|
|
depends_on:
|
|
- db
|
|
|
|
volumes:
|
|
db-data:
|
|
api-config:
|
|
web-config:
|