Merge pull request 'fix: noms de flags pour infos DB et inject .env dans containers' (#43) from vlbeaudoin/fix/compose-env into main
Reviewed-on: #43
This commit is contained in:
commit
c50800ebe9
2 changed files with 8 additions and 6 deletions
|
@ -10,9 +10,9 @@ Nécessite une installation fonctionnelle et accessible de [agecem/bottin](https
|
|||
|
||||
Remplir .env avec données d'environnement:
|
||||
```
|
||||
BOTTINAGENDA_POSTGRES_DATABASE=bottin-agenda
|
||||
BOTTINAGENDA_POSTGRES_PASSWORD=bottin-agenda
|
||||
BOTTINAGENDA_POSTGRES_USER=bottin-agenda
|
||||
BOTTINAGENDA_DB_DATABASE=bottin-agenda
|
||||
BOTTINAGENDA_DB_PASSWORD=bottin-agenda
|
||||
BOTTINAGENDA_DB_USER=bottin-agenda
|
||||
```
|
||||
|
||||
Déployer avec docker-compose:
|
||||
|
|
|
@ -3,9 +3,9 @@ services:
|
|||
db:
|
||||
image: 'docker.io/library/postgres:16.1'
|
||||
environment:
|
||||
POSTGRES_DATABASE: "${BOTTINAGENDA_POSTGRES_DATABASE}"
|
||||
POSTGRES_PASSWORD: "${BOTTINAGENDA_POSTGRES_PASSWORD}"
|
||||
POSTGRES_USER: "${BOTTINAGENDA_POSTGRES_USER}"
|
||||
POSTGRES_DATABASE: "${BOTTINAGENDA_DB_DATABASE:?}"
|
||||
POSTGRES_PASSWORD: "${BOTTINAGENDA_DB_PASSWORD:?}"
|
||||
POSTGRES_USER: "${BOTTINAGENDA_DB_USER:?}"
|
||||
volumes:
|
||||
- 'db-data:/var/lib/postgresql/data'
|
||||
restart: 'unless-stopped'
|
||||
|
@ -14,6 +14,7 @@ services:
|
|||
depends_on:
|
||||
- db
|
||||
build: .
|
||||
env_file: '.env'
|
||||
image: 'git.agecem.com/agecem/bottin-agenda:latest'
|
||||
ports:
|
||||
- '1313:1313'
|
||||
|
@ -26,6 +27,7 @@ services:
|
|||
depends_on:
|
||||
- api
|
||||
build: .
|
||||
env_file: '.env'
|
||||
image: 'git.agecem.com/agecem/bottin-agenda:latest'
|
||||
ports:
|
||||
- '2313:2313'
|
||||
|
|
Loading…
Reference in a new issue