-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathdocker-compose.yml
More file actions
48 lines (44 loc) · 1011 Bytes
/
docker-compose.yml
File metadata and controls
48 lines (44 loc) · 1011 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
41
42
43
44
45
46
47
48
services:
redis:
image: redis:7
restart: always
volumes:
- redis_data:/data
ports:
- "6380:6379"
docker-cloner:
image: abhibr/deployr-docker-cloner:latest
restart: always
ports:
- "8080:8080"
volumes:
- ./output:/app/output
- /var/run/docker.sock:/var/run/docker.sock
depends_on:
- redis
environment:
- REDIS_URL=redis://redis:6379
docker-pull-and-builder:
image: abhibr/deployr-docker-pull-and-builder:latest
restart: always
ports:
- "8082:8082"
volumes:
- ./output:/app/output
- /var/run/docker.sock:/var/run/docker.sock
depends_on:
- redis
environment:
- REDIS_URL=redis://redis:6379
- OUTPUT_BASE_PATH=/home/azureuser/deployr/output
static-server:
image: abhibr/deployr-static-server:latest
restart: always
depends_on:
- redis
ports:
- "8081:8081"
environment:
- REDIS_URL=redis://redis:6379
volumes:
redis_data: