-
Notifications
You must be signed in to change notification settings - Fork 29
Expand file tree
/
Copy pathdocker-compose.yml
More file actions
36 lines (35 loc) · 900 Bytes
/
docker-compose.yml
File metadata and controls
36 lines (35 loc) · 900 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
version: '3.4'
services:
iqfeed:
image: jaikumarm/iqfeed:v62025-w10
container_name: iqfeed
ports:
- "5009:5009"
- "9100:9100"
- "9200:9200"
- "9300:9300"
- "9400:9400"
- "8088:8080"
- "5901:5900"
environment:
IQFEED_PRODUCT_ID: "CHANGEME"
IQFEED_LOGIN: "CHANGEME"
IQFEED_PASSWORD: "CHANGEME"
volumes:
- /var/log/iqfeed:/root/DTN/IQFeed
- /var/log/distdnnd:/var/log/distdnnd
healthcheck:
test: ["CMD", "python3", "/root/is_iqfeed_running.py"]
interval: 60s
timeout: 30s
retries: 3
start_period: 5m
autoheal:
image: willfarrell/autoheal:latest
container_name: autoheal
restart: always
environment:
AUTOHEAL_CONTAINER_LABEL: all
volumes:
- /var/run/docker.sock:/var/run/docker.sock
hostname: autoheal