Now that zuul is running on noble nodes and running with docker compose instead of docker-compose we can remove the version specifier from the docker-compose.yaml files. Currently when we run docker compose on these nodes we get a warning that this version is ignored. Clean it up so that the warning goes away. Change-Id: I7c0f696d33a08c18bcb56a3ca6aa243271f8cdba
24 lines
640 B
YAML
24 lines
640 B
YAML
services:
|
|
web:
|
|
restart: always
|
|
image: quay.io/zuul-ci/zuul-web: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
|
|
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
|