Skip to content
Snippets Groups Projects
docker-compose.yml 457 B
version: "3.2"

services:
  dev:
    container_name: duniter-v2s
    image: paritytech/ci-linux:974ba3ac-20201006
    working_dir: /var/www/node-template
    ports:
      - "9944:9944"
    environment:
      - CARGO_HOME=/var/www/node-template/.cargo
    volumes:
      - .:/var/www/node-template
      - type: bind
        source: ./.local
        target: /root/.local
    command: bash -c "cargo build && ./target/debug/node-template --dev --ws-external"