-
Notifications
You must be signed in to change notification settings - Fork 0
/
docker-compose.yml
51 lines (47 loc) · 898 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
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
version: '3'
services:
redis:
image: redis
networks:
main:
aliases:
- redis
volumes:
- ./ACS/data:/data/
ports:
- 6379:6379
acs:
build: ACS/
networks:
main:
aliases:
- acs
volumes:
- ./ACS/:/app/
ports:
- 8484:8484
environment:
- HTTP_HOST=0.0.0.0
- HTTP_PORT=8484
- REDIS_HOST=redis
- REDIS_PORT=6379
- PYTHONUNBUFFERED=1
- THREE_DS_SERVER_URL=http://merchant:4242
merchant:
build: Merchant/
ports:
- 4242:4242
depends_on:
- acs
networks:
main:
aliases:
- merchant
environment:
- SERVER_PORT=4242
- SERVER_IP=0.0.0.0
- INTERNAL_NETWORK_URL=http://merchant:4242
- PUBLIC_URL=http://localhost:4242
- ACS_PUBLIC_URL=http://acs:8484
networks:
main: