github.com/keltia/go-ipfs@v0.3.8-0.20150909044612-210793031c63/test/3nodetest/fig.yml (about)

     1  data:
     2      build: ./data
     3      volumes:
     4          - /data
     5      command: sleep 1000000
     6  
     7  bootstrap:
     8      build: ./bootstrap
     9      command: daemon --debug --init
    10      expose:
    11          - "4011"
    12          - "4012/udp"
    13      environment:
    14          IPFS_LOGGING: debug
    15  
    16  server:
    17      build: ./server
    18      links:
    19          - bootstrap
    20      volumes_from:
    21          - data
    22      expose:
    23          - "4021"
    24          - "4022/udp"
    25      environment:
    26          IPFS_LOGGING: debug
    27  
    28  client:
    29      build: ./client
    30      links:
    31          - bootstrap
    32      volumes_from:
    33          - data
    34      expose:
    35          - "4031"
    36          - "4032/udp"
    37      environment:
    38          IPFS_LOGGING: debug