1234567891011121314151617 |
- version: '2'
- services:
- ecoin:
- build: ./
- container_name: ecoin
- hostname: ecoin
- restart: always
- command: /entrypoint.sh
- volumes:
- - ./.ssb:/root/.ssb
- - ./.ecoin:/root/.ecoin
- - ./entrypoint.sh:/entrypoint.sh
- ports:
- - 7408:7408
- - 7474:7474
|