-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathdocker-compose.yml
59 lines (49 loc) · 1021 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
52
53
54
55
56
57
58
59
---
version: "3"
services:
nginx:
image: nginx:alpine
container_name: nginx
restart: always
ports:
- "80:80"
volumes:
- ./nginx.conf:/etc/nginx/nginx.conf
- ./cert/:/etc/ssl/
networks:
- api-network
redis:
image: redis:latest
container_name: redis
restart: always
networks:
- api-network
ipstack1:
image: dilshadkp/ipstack:v1
container_name: ipstack1
restart: always
environment:
- CACHING_SERVER=redis
- IPSTACK_KEY=${IPSTACK_KEY}
networks:
- api-network
ipstack2:
image: dilshadkp/ipstack:v1
container_name: ipstack2
restart: always
environment:
- CACHING_SERVER=redis
- IPSTACK_KEY=${IPSTACK_KEY}
networks:
- api-network
ipstack3:
image: dilshadkp/ipstack:v1
container_name: ipstack3
restart: always
environment:
- CACHING_SERVER=redis
- IPSTACK_KEY=${IPSTACK_KEY}
networks:
- api-network
networks:
api-network: