diff options
author | khilman <khilman@users.noreply.github.com> | 2018-06-05 11:47:07 -0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-06-05 11:47:07 -0700 |
commit | c1071d0f9b57958b22546abe8eadf670b3926b98 (patch) | |
tree | 6ac6947fc9196283ecba0c17a9033d3af3aaaa99 /docker-compose.template | |
parent | 2d79d03f5818c096535c9784b12df5ea99c0dbff (diff) | |
parent | a22e4a89a06bda681ba329bf73e05a7d9196efe3 (diff) |
Merge pull request #27 from montjoie/multi_slave_2018_x
Multi slave 2018 x
Diffstat (limited to 'docker-compose.template')
-rw-r--r-- | docker-compose.template | 45 |
1 files changed, 0 insertions, 45 deletions
diff --git a/docker-compose.template b/docker-compose.template deleted file mode 100644 index ced5762..0000000 --- a/docker-compose.template +++ /dev/null @@ -1,45 +0,0 @@ -version: '2.0' -services: - lava-master: - hostname: lava-master - restart: always - build: - context: lava-master - ports: - - "10080:80" - - "5555:5555" - - "5556:5556" - volumes: -# boot and /lib/modules are for libguestfs (TODO set them read_only with docker-compose 3.0) - - "/boot:/boot" - - "/lib/modules:/lib/modules" - lab-slave-0: - hostname: lab-slave-0 -#conmux does not support dns_search - dns_search: "" - restart: always - build: - context: lava-slave - environment: - LAVA_MASTER: "lava-master" - ports: - - "69:69/udp" - - "80:80" - - "61950-62000:61950-62000" - volumes: -# boot and /lib/modules are for libguestfs (TODO set them read_only with docker-compose 3.0) - - "/boot:/boot" - - "/lib/modules:/lib/modules" - links: - - "lava-master" - squid: - hostname: squid - restart: always - build: - context: squid - volumes: - - squid-cache:/var/spool/squid - ports: - - "3128:3128" -volumes: - squid-cache: |