
Also - update the test job to use xenial nodes, since that's what our gerrit servers are. docker-compose in xenial is too old for version 3 file format - but we didn't get an error in the test becuase we're running on bionic. Change-Id: I855c3df241932098c95de84cf9f92383b335702f
12 lines
206 B
Django/Jinja
12 lines
206 B
Django/Jinja
version: '2'
|
|
|
|
services:
|
|
gerrit:
|
|
image: {{ gerrit_container_image }}
|
|
network_mode: host
|
|
user: gerrit
|
|
volumes:
|
|
{% for volume in gerrit_container_volumes %}
|
|
- {{ volume }}
|
|
{% endfor %}
|