
When we download images, we use a lot of tmp space. Rather than writing them to the rood partition, which is not very large, use the slightly larger /opt disk. Change-Id: I6412a89890562728f4c5939065c0554f7698ff3e
18 lines
464 B
YAML
18 lines
464 B
YAML
# Version 2 is the latest that is supported by docker-compose in
|
|
# Ubuntu Xenial.
|
|
version: '2'
|
|
|
|
services:
|
|
launcher:
|
|
restart: on-failure
|
|
image: quay.io/zuul-ci/zuul-launcher:latest
|
|
network_mode: host
|
|
user: zuul
|
|
volumes:
|
|
- /etc/zuul:/etc/zuul
|
|
- /etc/openstack:/etc/openstack
|
|
- /home/zuuld:/home/zuul
|
|
- /var/lib/zuul:/var/lib/zuul
|
|
- /var/log/zuul:/var/log/zuul
|
|
- /opt/zuul-launcher-tmp:/opt/zuul-launcher-tmp
|