6ada97cc6f
Zuul is moving its container image hosting to quay.io. Update our docker-compose.yaml files to pull the images from this new location. Note we don't update zuul-registry as it hasn't updated yet. A followup change will update that container image location separately. Change-Id: Idce7df82e811490fa5d817682479161bd74cd848
27 lines
698 B
YAML
27 lines
698 B
YAML
# Version 2 is the latest that is supported by docker-compose in
|
|
# Ubuntu Xenial.
|
|
version: '2'
|
|
|
|
services:
|
|
web:
|
|
restart: always
|
|
image: quay.io/zuul-ci/zuul-web:latest
|
|
network_mode: host
|
|
user: zuul
|
|
volumes:
|
|
- /etc/zuul:/etc/zuul
|
|
- /home/zuuld:/home/zuul
|
|
- /var/lib/zuul:/var/lib/zuul
|
|
- /var/log/zuul:/var/log/zuul
|
|
fingergw:
|
|
restart: always
|
|
image: quay.io/zuul-ci/zuul-fingergw:latest
|
|
network_mode: host
|
|
# fingergw needs to run as root so it can
|
|
# grab the finger port and then drop privs
|
|
volumes:
|
|
- /etc/zuul:/etc/zuul
|
|
- /home/zuuld:/home/zuul
|
|
- /var/lib/zuul:/var/lib/zuul
|
|
- /var/log/zuul:/var/log/zuul
|