-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdocker-compose.yml
42 lines (39 loc) · 896 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
version: '3.8'
services:
crypto_pipeline:
build:
context: .
dockerfile: Dockerfile
depends_on:
- minio_local
networks:
crypto_data_ingestion_network:
ipv4_address: 172.18.0.11
env_file:
- .env
volumes:
- ~/crypto_pipeline/reports:/reports
container_name: crypto_pipeline
minio_local:
image: minio/minio
container_name: minio_local
environment:
MINIO_ROOT_USER: ${MINIO_ROOT_USER}
MINIO_ROOT_PASSWORD: ${MINIO_ROOT_PASSWORD}
ports:
- "9000:9000"
- "9001:9001"
networks:
crypto_data_ingestion_network:
ipv4_address: 172.18.0.10
env_file:
- .env
volumes:
- ~/minio/data:/data
command: server /data --console-address ":9001"
networks:
crypto_data_ingestion_network:
driver: bridge
ipam:
config:
- subnet: 172.18.0.0/16