-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdocker-compose.yml
44 lines (41 loc) · 1.06 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
version: "3"
services:
alert-ca-poller:
image: alert-ca-worker:build
container_name: alert-ca-poller
build:
context: ./app
dockerfile: ../Dockerfile
volumes:
- /Volumes/Scratch/CALFIRE:/data
environment:
- WORKERS=20
- PYTHONUNBUFFERED=1
entrypoint: ["python", "alertca_get_images.py"]
command: ["--run-10s"]
alert-ca-poller-1m:
image: alert-ca-worker:build
container_name: alert-ca-poller-1m
build:
context: ./app
dockerfile: ../Dockerfile
volumes:
- /Volumes/Scratch/CALFIRE:/data
environment:
- WORKERS=20
- PYTHONUNBUFFERED=1
entrypoint: ["python", "alertca_get_images.py"]
command: ["--run-1m"]
alert-ca-poller-camdata:
image: alert-ca-worker:build
container_name: alert-ca-poller-camdata
build:
context: ./app
dockerfile: ../Dockerfile
volumes:
- /Volumes/Scratch/CALFIRE:/data
environment:
- WORKERS=5
- PYTHONUNBUFFERED=1
entrypoint: ["python", "alertca_get_images.py"]
command: ["--get-camdata"]