docker-compose.yml 314 B

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