123456789101112131415161718 |
- version: '2'
- services:
- ecoin:
- platform: linux/arm64
- build:
- context: "."
- container_name: ecoin
- hostname: ecoin
- restart: always
- command: /entrypoint.sh
- volumes:
- - ./.ecoin:/root/.ecoin
- - ./entrypoint.sh:/entrypoint.sh
- ports:
- - 7408:7408
- - 7474:7474
|