mirror of
https://github.com/pezkuwichain/pezkuwi-subxt.git
synced 2026-04-25 21:07:56 +00:00
97a6db785e
* Add Dockerfile Add documentation Ref #375 * Add PORT, VOLUME and reduce size of the docker image significantly Fix doc and reduce image size Fix #375 * Fix docker compose
16 lines
271 B
YAML
16 lines
271 B
YAML
version: '3'
|
|
services:
|
|
polkadot:
|
|
build:
|
|
context: .
|
|
ports:
|
|
- "127.0.0.1:30333:30333/tcp"
|
|
- "127.0.0.1:9933:9933/tcp"
|
|
image: chevdor/polkadot:latest
|
|
volumes:
|
|
- "polkadot-data:/data"
|
|
command: polkadot
|
|
|
|
volumes:
|
|
polkadot-data:
|