-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathdocker-compose.yaml
More file actions
41 lines (40 loc) · 854 Bytes
/
Copy pathdocker-compose.yaml
File metadata and controls
41 lines (40 loc) · 854 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
37
38
39
40
41
version: '3'
services:
backend:
build:
context: ./docker/backend
networks:
- music_Dapp_network
ports:
- '3001:3001'
volumes:
- ./docker/backend/tmp_files:/backend/tmp_files
- ./docker/backend/hpcp_data:/backend/hpcp_data
ipfs:
build:
context: ./docker/ipfs
# image: ipfs/go-ipfs:release
container_name: ipfs_host
volumes:
- ./docker/ipfs/export:/export
- ./docker/ipfs/ipfs_data:/data/ipfs
networks:
- music_Dapp_network
ports:
- '4001:4001'
- '4001:4001/udp'
- '127.0.0.1:8080:8080'
- '127.0.0.1:5001:5001'
# python:
# build:
# context: ./docker/python
# volumes:
# - .:/code
# depends_on:
# - db
# networks:
# - db_network
# ports:
# - "3001:3001"
networks:
music_Dapp_network: