https://github.com/oxyaction/eos-docker
https://github.com/oxyaction/eos-docker
docker-image eos eosio
Last synced: about 1 month ago
JSON representation
- Host: GitHub
- URL: https://github.com/oxyaction/eos-docker
- Owner: Oxyaction
- Created: 2018-02-18T14:31:26.000Z (over 8 years ago)
- Default Branch: master
- Last Pushed: 2018-02-19T08:06:42.000Z (over 8 years ago)
- Last Synced: 2025-11-13T18:02:57.623Z (7 months ago)
- Topics: docker-image, eos, eosio
- Language: C++
- Size: 5.86 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
Eos docker image
================
### Build
`./build.sh` will build eos public testnet image tagged **DAWN-2018-02-14**
To build custom version `./build.sh custom-version` (**custom-version** tag should exist in official repo)
### Run
`docker run --name eos -it oxyaction/eos:DAWN-2018-02-14`
### Compile contracts
`docker run -v $(pwd)/contracts:/opt/contracts -w /opt/contracts/currency oxyaction/eos:DAWN-2018-02-14 eoscpp -o currency.wast currency.cpp`
#### Add some bash aliaess
```
alias eosc='docker exec eos eosc'
alias eos='docker exec -it eos bash'
```