-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathcompose.yaml
60 lines (57 loc) · 1.5 KB
/
compose.yaml
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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
services:
insa-utils:
image: richarvey/nginx-php-fpm:latest
labels:
com.centurylinklabs.watchtower.enable: true
traefik.enable: true
traefik.host: insa-utils.fr
environment:
TZ: Europe/Paris
VPN_USER: [email protected]
VPN_PASSWORD: $VPN_PASSWORD
MEILISEARCH_HOST: meilisearch
MEILISEARCH_PORT: 7700
MEILISEARCH_KEY: $MEILISEARCH_KEY
SMTP_HOST: postal.clgr.io
SMTP_PORT: 25
SMTP_FROM_EMAIL: [email protected]
SMTP_FROM_NAME: 'INSA Utils'
SMTP_USERNAME: clgr-services/insa-utils
SMTP_PASSWORD: $SMTP_PASSWORD
DB_HOST: mysql
DB_PASSWORD: $DB_PASSWORD
WEBPUSH_PRIVATE_KEY: $WEBPUSH_PRIVATE_KEY
RUN_SCRIPTS: 1
REAL_IP_HEADER: 1
REAL_IP_FROM: 172.26.0.2/32
GIT_PERSONAL_TOKEN: $GIT_PERSONAL_TOKEN
GIT_USERNAME: ClementGre
GIT_REPO: 'github.com/ClementGre/insa-utils.git'
GIT_EMAIL: '[email protected]'
GIT_NAME: 'Clément Grennerat'
networks:
- traefik
- mysql
- insa-utils
volumes:
- /home/clement/openconnect/openconnect-pipe:/openconnect-pipe
restart: always
meilisearch:
image: getmeili/meilisearch:v1.12
environment:
MEILI_MASTER_KEY: $MEILISEARCH_KEY
ports:
- "7700:7700"
networks:
- insa-utils
volumes:
- "/mnt/insa-utils-meili-data:/meili_data"
networks:
insa-utils:
name: insa-utils
traefik:
external: true
name: traefik
mysql:
external: true
name: mysql