Compare commits
17 commits
Author | SHA1 | Date | |
---|---|---|---|
8dfffd09e8 | |||
f97b7d4ce6 | |||
02078319a5 | |||
6e4d1869d6 | |||
12b7a87b9c | |||
e46777359f | |||
59a6007416 | |||
2b1956ac20 | |||
dc6bc00cbe | |||
58ce4e24a6 | |||
|
bf4e74c926 | ||
dcc10f0640 | |||
0d20be3a97 | |||
4aac59273b | |||
4707b9d65a | |||
932783b907 | |||
cd79d1701f |
5 changed files with 59 additions and 2 deletions
29
README.md
Normal file
29
README.md
Normal 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
2
bottin
|
@ -1 +1 @@
|
|||
Subproject commit 0b25ed6562dff6576c72e067cd7ae583253f2ec4
|
||||
Subproject commit 369332db26c281ab92db2aa187e56cc17533c2d7
|
|
@ -1 +1 @@
|
|||
Subproject commit 2dec57d097515ab37e2177bb28be1c7963c1bdfa
|
||||
Subproject commit 34ee2c095535f3cd6775936a28d5f2286904e33b
|
|
@ -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:
|
||||
|
|
3
examples/bottin-ag-web.yaml
Normal file
3
examples/bottin-ag-web.yaml
Normal file
|
@ -0,0 +1,3 @@
|
|||
web:
|
||||
api:
|
||||
host: 'bottin_ag_api'
|
Reference in a new issue