Compare commits

...

17 commits
v0.1.0 ... main

Author SHA1 Message Date
8dfffd09e8 chores: bump bottin 2024-02-15 19:44:39 -05:00
f97b7d4ce6 Update dependencies et fix env manquante 2024-02-14 17:09:23 -05:00
02078319a5 fix: ajouter env vars *_DB_HOST 2024-02-14 15:44:09 -05:00
6e4d1869d6 Bump bottin et bottinag avec fonctionalité de config par env 2024-02-14 14:54:27 -05:00
12b7a87b9c Update bottin-ag -> v1.1.1 2023-10-08 01:41:44 -04:00
e46777359f Update bottin-ag -> v1.1.0 2023-10-02 14:09:35 -04:00
59a6007416 Update bottin -> v5.6.0 2023-09-19 19:23:02 -04:00
2b1956ac20 Update bottin-ag -> v1.0.0-rc3 2023-09-19 18:27:29 -04:00
dc6bc00cbe Update bottin-ag -> v1.0.0-rc2 2023-09-19 17:00:58 -04:00
58ce4e24a6 Update bottin-ag -> v1.0.0-rc1 2023-09-19 16:52:13 -04:00
Victor Lacasse-Beaudoin
bf4e74c926 Update bottin -> v5.5.1 2023-09-18 23:20:29 -05:00
dcc10f0640 Update bottin -> v5.5.0 2023-09-18 23:07:25 -04:00
0d20be3a97 Update bottin et bottin-ag 2023-09-18 22:09:31 -04:00
4aac59273b Update bottin-ag -> v0.16.1 2023-09-17 16:41:48 -04:00
4707b9d65a Update bottin-ag 2023-09-17 16:34:16 -04:00
932783b907 Add examples/bottin-ag-web.yaml 2023-09-17 16:33:57 -04:00
cd79d1701f Update bottin-ag submodule 2023-09-17 01:33:38 -04:00
5 changed files with 59 additions and 2 deletions

29
README.md Normal file
View file

@ -0,0 +1,29 @@
## agecem/ag
Déploiement monolithique de `bottin` et `bottin-ag`
### configuration
Le bloc suivant contient les variables à remplir dans un fichier `.env` situé dans le même répertoire que `docker-compose.yaml`.
*prenez soin de changer les valeurs par défaut!*
```
# fichier: .env
# bottin
BOTTIN_API_KEY=foobar
BOTTIN_POSTGRES_DATABASE=foobar
BOTTIN_POSTGRES_PASSWORD=foobar
BOTTIN_POSTGRES_USER=foobar
BOTTIN_WEB_PASSWORD=foobar
BOTTIN_WEB_USER=foobar
# bottin-ag
BOTTINAG_API_KEY=foobar
BOTTINAG_POSTGRES_DATABASE=foobar
BOTTINAG_POSTGRES_PASSWORD=foobar
BOTTINAG_POSTGRES_USER=foobar
BOTTINAG_WEB_PASSWORD=foobar
BOTTINAG_WEB_USER=foobar
```

2
bottin

@ -1 +1 @@
Subproject commit 0b25ed6562dff6576c72e067cd7ae583253f2ec4
Subproject commit 369332db26c281ab92db2aa187e56cc17533c2d7

@ -1 +1 @@
Subproject commit 2dec57d097515ab37e2177bb28be1c7963c1bdfa
Subproject commit 34ee2c095535f3cd6775936a28d5f2286904e33b

View file

@ -15,6 +15,12 @@ services:
- 'bottin_db'
build: './bottin'
image: 'git.agecem.com/agecem/bottin:latest'
environment:
BOTTIN_DB_HOST: 'bottin_db'
BOTTIN_DB_DATABASE: "${BOTTIN_POSTGRES_DATABASE}"
BOTTIN_DB_PASSWORD: "${BOTTIN_POSTGRES_PASSWORD}"
BOTTIN_DB_USER: "${BOTTIN_POSTGRES_USER}"
BOTTIN_API_KEY: "${BOTTIN_API_KEY}"
ports:
- '1312:1312'
volumes:
@ -27,6 +33,11 @@ services:
- 'bottin_api'
build: './bottin'
image: 'git.agecem.com/agecem/bottin:latest'
environment:
BOTTIN_WEB_API_HOST: 'bottin_api'
BOTTIN_WEB_API_KEY: "${BOTTIN_API_KEY}"
BOTTIN_WEB_PASSWORD: "${BOTTIN_WEB_PASSWORD}"
BOTTIN_WEB_USER: "${BOTTIN_WEB_USER}"
ports:
- '2312:2312'
volumes:
@ -47,8 +58,17 @@ services:
bottin_ag_api:
depends_on:
- 'bottin_ag_db'
- 'bottin_api'
build: './bottin-ag'
image: 'git.agecem.com/agecem/bottin-ag:latest'
environment:
BOTTINAG_API_KEY: "${BOTTINAG_API_KEY}"
BOTTINAG_BOTTIN_API_KEY: "${BOTTIN_API_KEY}"
BOTTINAG_BOTTIN_API_HOST: 'bottin_api'
BOTTINAG_DB_DATABASE: "${BOTTINAG_POSTGRES_DATABASE}"
BOTTINAG_DB_HOST: 'bottin_ag_db'
BOTTINAG_DB_PASSWORD: "${BOTTINAG_POSTGRES_PASSWORD}"
BOTTINAG_DB_USER: "${BOTTINAG_POSTGRES_USER}"
ports:
- '3182:3182'
volumes:
@ -61,6 +81,11 @@ services:
- 'bottin_ag_api'
build: './bottin-ag'
image: 'git.agecem.com/agecem/bottin-ag:latest'
environment:
BOTTINAG_WEB_API_HOST: 'bottin_ag_api'
BOTTINAG_WEB_API_KEY: "${BOTTINAG_API_KEY}"
BOTTINAG_WEB_PASSWORD: "${BOTTINAG_WEB_PASSWORD}"
BOTTINAG_WEB_USER: "${BOTTINAG_WEB_USER}"
ports:
- '3183:3183'
volumes:

View file

@ -0,0 +1,3 @@
web:
api:
host: 'bottin_ag_api'