1234567891011121314151617181920212223242526272829303132 |
- version: '3'
- services:
- ipfs:
- image: ipfs/go-ipfs:latest
- ports:
- - '127.0.0.1:5001:5001'
- - '127.0.0.1:8080:8080'
- volumes:
- - ipfs-data:/data/ipfs
- entrypoint: ''
- command: |
- /bin/sh -c "
- set -e
- /usr/local/bin/start_ipfs config profile apply lowpower
- /usr/local/bin/start_ipfs config --json Gateway.PublicGateways '{\"localhost\": null }'
- /sbin/tini -- /usr/local/bin/start_ipfs daemon --migrate=true
- "
- chain:
- image: joystream/node
- build:
- context: .
- dockerfile: joystream-node.Dockerfile
- ports:
- - '127.0.0.1:9944:9944'
- volumes:
- - chain-data:/data
- command: --dev --ws-external --base-path /data
- volumes:
- ipfs-data:
- driver: local
- chain-data:
- driver: local
|