-
Notifications
You must be signed in to change notification settings - Fork 9
Expand file tree
/
Copy pathdocker-compose-proxy.yml
More file actions
40 lines (36 loc) · 912 Bytes
/
docker-compose-proxy.yml
File metadata and controls
40 lines (36 loc) · 912 Bytes
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
x-stub-image-name: &stub-image-name di-authentication-frontend/di-auth-stub-orchstub:latest
services:
redis:
image: redis:6.0.5-alpine
ports:
- "${REDIS_PORT:-6379}:6379"
networks:
- di-net
di-auth-stub-orchstub:
image: *stub-image-name
pull_policy: never
build:
context: .
dockerfile: Dockerfile-stub
ports:
- "${DOCKER_DOCKER_STUB_ORCHSTUB_PORT:-3002}:${DOCKER_DOCKER_STUB_ORCHSTUB_PORT:-3002}"
environment:
PORT: ${DOCKER_DOCKER_STUB_ORCHSTUB_PORT:-3002}
DEPLOYMENT_NAME: ${DEPLOYMENT_NAME}
command:
- npm
- run
- dummy-server-orchstub
restart: on-failure
networks:
- di-net
service-down-page:
build:
context: ./service-down-page-config/
dockerfile: Dockerfile
ports:
- ${DOCKER_SERVICE_DOWN_PAGE_PORT:-3005}:8080
networks:
- di-net
networks:
di-net: