-
Notifications
You must be signed in to change notification settings - Fork 1
/
docker-compose.consumer.yml
45 lines (43 loc) · 1.06 KB
/
docker-compose.consumer.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
45
version: '3.4'
services:
frontend:
ports:
- "82:80"
environment:
STATIC_FOLDERS_REGEX: "^/(assets|font|files)/"
deltanotifier:
volumes:
- ./config/delta-consumer:/config
consumer:
image: redpencil/poc-diff-consumer:latest
volumes:
- ./config/consumer:/config
links:
- database
- tunnel
# These environment variables are default, but included here for illustration
# The poc-diff-consumer-service README contains more information
environment:
SYNC_BASE_URL: "http://identifier"
TUNNEL_ENDPOINT: "http://tunnel/out"
TUNNEL_DEST_IDENTITY: "[email protected]"
triplestore:
volumes:
- ./data/db-consumer:/data
tunnel:
image: redpencil/mu-tunnel:latest
container_name: tunnel-consumer
volumes:
- ./config/tunnel-consumer:/config
external_links:
- tunnel-producer
networks:
- tunnel
- default
environment:
TUNNEL_LOG_INBOUND: "true"
TUNNEL_LOG_OUTBOUND: "true"
networks:
tunnel:
external: true
name: tunnel