-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdocker-compose.yml
48 lines (42 loc) · 918 Bytes
/
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
version: "3.6"
services:
influxdb:
image: influxdb:2.5.1-alpine
volumes:
- ./influxdb/data/svl/influxdb2:/var/lib/influxdb2:rw
env_file:
- ./influxdb/.env
ports:
- 8086:8086
restart: on-failure
alphavantage_scraper:
container_name: alphavantage_scraper
build:
context: ./alphavantage_scraper
dockerfile: Dockerfile
env_file:
- ./alphavantage_scraper/.env
depends_on:
- influxdb
dash_app:
container_name: dash_app
build:
context: ./dash_app
dockerfile: Dockerfile
env_file:
- ./dash_app/.env
ports:
- 8080:8080
depends_on:
- influxdb
# blobstorage:
# image: minio/minio:RELEASE.2022-11-17T23-20-09Z.fips
# #volumes:
# # - ./blobstore/data:/
# env_file:
# - ./blobstore/.env
# ports:
# - 9000:9000
# restart: on-failure
volumes:
influxdb2: