-
Notifications
You must be signed in to change notification settings - Fork 1
/
docker-compose.yml
42 lines (40 loc) · 1 KB
/
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
x-logging: &default-logging
driver: "json-file"
options:
max-size: "10m"
max-file: "3"
services:
frontend:
image: lblod/frontend-embeddable-notule-editor:5.3.1
restart: always
logging: *default-logging
environment:
VIRTUAL_HOST: "embeddable.dev.gelinkt-notuleren.lblod.info"
VIRTUAL_PATH: "/"
LETSENCRYPT_HOST: "embeddable.dev.gelinkt-notuleren.lblod.info"
LETSENCRYPT_EMAIL: "[email protected]"
expose:
- 80
networks:
- proxy
- default
lpdc-service:
image: lblod/api-proxy-service:1.0.2
restart: always
logging: *default-logging
expose:
- 80
environment:
ALLOWED_ORIGIN: "*"
VIRTUAL_HOST: "embeddable.dev.gelinkt-notuleren.lblod.info"
VIRTUAL_PATH: "/lpdc-service"
VIRTUAL_DEST: "/"
API_URL: "https://api.ipdc.tni-vlaanderen.be"
API_KEY: "VERY_SECRET_KEY_REPLACE_ME"
networks:
- proxy
- default
networks:
proxy:
name: letsencrypt_default
external: true