docker-compose.yml 281 B

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