Files
system-config/playbooks/roles/zuul-web/files/docker-compose.yaml
Clark Boylan de94a04473 Remove docker compose version from zuul services
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
2025-06-30 15:34:23 -07:00

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