skip to Main Content

Nginx – sort and update a docker-compose.yaml with jq

This is my docker-compose file: { "name": "movies-docker-test", "services": { "movies-rp": { "volumes": [ { "type": "volume", "source": "certs", "target": "/etc/nginx/certs", }, { "type": "bind", "source": "/home/nblanchet/jeudi_infra/kubernetes/okd/movies-docker-test/reverse-proxy/wikibase.conf.template", "target": "/etc/nginx/templates/wikibase.conf.template" } ] } } } I'd like to update this file…

VIEW QUESTION

Docker – Bitbucket pipeline err

getting the below error in my pipeline. Can anyone help me on this ? Am trying the deploy my ecs service via bitbucket pipelines but facing this error. I tried updating docker, pip, docker-compose everything but no luck current versions:…

VIEW QUESTION

Docker volume to keep Loki config and data files

I'm beginner in docker, so I probably don't understand how it should work. I have loki container - here is part of docker-compose.yml: loki: image: grafana/loki:latest ports: - "3100:3100" volumes: - /loki:/docker_data/loki_data - /etc/loki:/docker_data/loki_config networks: - monitoring (...) networks: monitoring:…

VIEW QUESTION

Visual Studio, docker container->container call: Connection Refused

Edit: Problem reduced to appearing when changing from .Net6 to .Net8. Changing from .Net6 to .Net7 works fine. But why? I've tried to follow this tutorial. https://learn.microsoft.com/en-us/visualstudio/containers/tutorial-multicontainer?view=vs-2022 The have pushed their code to https://github.com/MicrosoftDocs/vs-tutorial-samples/tree/master/docker/ComposeSample I download and it works. I…

VIEW QUESTION
Back To Top
Search