docker-compose.yml 296 B

1234567891011121314151617
  1. version: '2'
  2. services:
  3. ecoin:
  4. build: ./
  5. container_name: ecoin
  6. hostname: ecoin
  7. restart: always
  8. command: /entrypoint.sh
  9. volumes:
  10. - ./.ssb:/root/.ssb
  11. - ./.ecoin:/root/.ecoin
  12. - ./entrypoint.sh:/entrypoint.sh
  13. ports:
  14. - 7408:7408
  15. - 7474:7474