
Now that codesearch is deployed on Noble with podman as the container runtime we can push our hound container to quay and still have speculative container images. Do this to reduce our reliance on docker hub as their rate limits are very aggressive now. Change-Id: I364da9ebe10e681de024b50cbdccdb5b3fce3617
14 lines
330 B
Django/Jinja
14 lines
330 B
Django/Jinja
services:
|
|
hound:
|
|
restart: always
|
|
image: quay.io/opendevorg/hound
|
|
network_mode: host
|
|
environment:
|
|
- 'USE_HOUND_TEST_CONFIG={{ "1" if codesearch_use_test_config else "0" }}'
|
|
volumes:
|
|
- /var/lib/hound/data:/var/run/data
|
|
logging:
|
|
driver: journald
|
|
options:
|
|
tag: "docker-hound"
|