-
Notifications
You must be signed in to change notification settings - Fork 0
/
docker-compose.yml
44 lines (44 loc) · 909 Bytes
/
docker-compose.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
version: "3.9"
services:
database:
image: mariadb
restart: always
environment:
MYSQL_ROOT_PASSWORD: root
MYSQL_DATABASE: KDECOLE
expose:
- 3306
networks:
- kdecole
volumes:
- mariadb-storage:/var/lib/mysql
grafana:
image: grafana/grafana
restart: always
ports:
- 3000:3000
networks:
- kdecole
volumes:
- grafana-storage:/var/lib/grafana
- ./doc/grafana/provisioning:/etc/grafana/provisioning
depends_on:
- database
- kdecole
kdecole:
build: kdecole
restart: always
environment:
KDECOLE_TOKEN: VOTRE_TOKEN
KDECOLE_URL: https://mobilite.monbureaunumerique.fr/mobilite
# KDECOLE_VERSION: '3.7.14'
KDECOLE_ACADEMIE: Strasbourg
networks:
- kdecole
depends_on:
- database
networks:
kdecole:
volumes:
grafana-storage:
mariadb-storage: