github.com/datachainlab/burrow@v0.25.0/docker-compose.yml (about)

     1  version: "3"
     2  services:
     3    db:
     4      image: postgres:11-alpine
     5      ports:
     6        - 5432
     7  
     8    burrow:
     9      image: hyperledger/burrow:ci
    10      environment:
    11        DB_URL: "postgres://postgres@db:5432/postgres?sslmode=disable"
    12      depends_on:
    13        - db
    14      volumes:
    15      - .:/go/src/github.com/hyperledger/burrow
    16  #    - /var/run/docker.sock:/var/run/docker.sock
    17      working_dir: /go/src/github.com/hyperledger/burrow