-
Notifications
You must be signed in to change notification settings - Fork 0
/
docker-compose.yml
30 lines (28 loc) · 945 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
version: '3.7'
services:
app:
image: maximelaplanche/customerarea4dolibarr:latest
restart: always
environment:
NODE_ENV: production
NODE_OPTIONS: " "
REACT_APP_SITE_LOGO_URL_MINI: "/dist/img/LogoMLTech_bg_white.png"
REACT_APP_SITE_LOGO_URL: /dist/img/LogoMLTech.png
REACT_APP_SITE_NAME: MLTech
REACT_APP_MAIL_CONTACT: [email protected]
REACT_APP_API_ADDRESS: https://dolibarr.mltech.fr/api/index.php
REACT_APP_DOLIBARR_INSTANCE: https://dolibarr.mltech.fr/
REACT_APP_USER_CONTACT: 1
labels:
- "traefik.enable=true"
- "traefik.http.routers.mymltech.rule=Host(`my.mltech.fr`)"
- "traefik.http.services.mymltech.loadbalancer.server.port=80"
- "traefik.http.routers.mymltech.tls=true"
- "traefik.docker.network=traefik_traefik"
networks:
- internal
- traefik_traefik
networks:
internal:
traefik_traefik:
external: true