This commit is contained in:
2022-10-20 10:36:29 +02:00
parent c37d824191
commit 79d9f55fdc
44 changed files with 130 additions and 371 deletions

View File

@@ -4,8 +4,8 @@ services:
database:
image: postgres:10-alpine
environment:
- POSTGRES_DB=nos_comptes
- POSTGRES_PASSWORD=nos_comptes
- POSTGRES_DB=budget
- POSTGRES_PASSWORD=budget
- POSTGRES_HOST_AUTH_METHOD=trust
ports:
- "5432"
@@ -23,10 +23,10 @@ services:
links:
- database
environment:
- LIQUIBASE_DATABASE=nos_comptes
- LIQUIBASE_DATABASE=budget
- LIQUIBASE_HOST=database
- LIQUIBASE_USERNAME=nos_comptes
- LIQUIBASE_PASSWORD=nos_comptes
- LIQUIBASE_USERNAME=budget
- LIQUIBASE_PASSWORD=budget
- LIQUIBASE_CHANGELOG=/changelogs/changelog-master.xml
- LIQUIBASE_URL=jdbc:postgresql://database:5432/postgres
volumes: