-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathdocker-compose.yml
More file actions
55 lines (55 loc) · 1023 Bytes
/
docker-compose.yml
File metadata and controls
55 lines (55 loc) · 1023 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
49
50
51
52
53
54
55
version: "3"
services:
flask:
build:
context: .
args:
UID: ${UID:-1000}
GID: ${GID:-1000}
env_file:
- ./env
image: lvm-vackup
restart: unless-stopped
command: ./entrypoint.sh
volumes:
- ./download/:/download/
- .:/app/
ports:
- "5000:5000"
depends_on:
- redis
queue:
build:
context: .
args:
UID: ${UID:-1000}
GID: ${GID:-1000}
image: lvm-vackup-q
env_file:
- ./env
volumes:
- ./download/:/download/
restart: unless-stopped
command: ./entrypoint_q.sh
depends_on:
- redis
monitor:
build:
context: .
args:
UID: ${UID:-1000}
GID: ${GID:-1000}
image: lvm-vackup-mon
env_file:
- ./env
restart: unless-stopped
command: ./entrypoint_mon.sh
ports:
- "5555:5555"
depends_on:
- redis
redis:
image: "redis:5-alpine"
restart: unless-stopped
volumes:
- ./data/redis/:/data/