containers: worker client base url protocol

The base url for the osbuild-worker container was
missing the `https` protocol in the docker-compose file.
This commit adds this to prevent the worker from exiting
This commit is contained in:
Gianluca Zuccarelli 2021-09-22 19:32:11 +02:00 committed by Tom Gundersen
parent 7bf6dc4cd4
commit b09040efd5

View file

@ -16,7 +16,7 @@ services:
context: .. context: ..
dockerfile: ./distribution/Dockerfile-worker dockerfile: ./distribution/Dockerfile-worker
# override the entrypoint to specify composer hostname and port # override the entrypoint to specify composer hostname and port
entrypoint: /usr/libexec/osbuild-composer/osbuild-worker composer:8700 entrypoint: ["/usr/libexec/osbuild-composer/osbuild-worker" "https://composer:8700"]
volumes: volumes:
- ${CONTAINER_CONFIG_DIR}/:/etc/osbuild-composer - ${CONTAINER_CONFIG_DIR}/:/etc/osbuild-composer
environment: environment: