-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdocker-compose.yml
57 lines (53 loc) · 1.3 KB
/
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
services:
notifier:
build:
context: .
dockerfile: Dockerfile
# volumes:
# - .:/app
network_mode: "host"
environment:
- APP_ENV=development
- APP_DEBUG=true
command: ["python", "main.py", "notifier"]
watcher_flats:
build:
context: .
dockerfile: Dockerfile
# volumes:
# - .:/app
network_mode: "host"
environment:
- APP_ENV=development
- APP_DEBUG=true
command: ["python", "main.py", "watcher", "--query-path", "query_params_flats.json"]
watcher_houses:
build:
context: .
dockerfile: Dockerfile
# volumes:
# - .:/app
network_mode: "host"
environment:
- APP_ENV=development
- APP_DEBUG=true
command: ["python", "main.py", "watcher", "--query-path", "query_params.json"]
minio:
image: docker.io/minio/minio:latest
ports:
- '9000:9000'
- '9001:9001'
networks:
- minionetwork
volumes:
- type: bind
source: /home/jry/data/baraky/data
target: /data
environment:
- MINIO_ROOT_USER=${MINIO_username}
- MINIO_ROOT_PASSWORD=${MINIO_password}
# - MINIO_DEFAULT_BUCKETS=estates
command: server /data --console-address ":9001"
networks:
minionetwork:
driver: bridge