32,390 questions
-1 votes
0 answers
41 views
RabbitMQ .Net unsupported external secret error
hi everyone first of all i did what i all know but it doesnt work services: hotelreservationapi-presentation: image: hotelreservationapi-presentation:latest build: context: ./...
0 votes
1 answer
26 views
Docker TYPO3 project 404 page not found
I'm running a project with docker and traefik. I try to access http://myproject.localhost/typo3 Suddenly i get this error: "404 page not found" I don't know how to fix or to debug this error....
438 votes
8 answers
935k views
How do I mount a host directory as a volume in docker compose
I have a development environment I'm dockerizing and I would like the ability to livereload my changes without having to rebuild docker images. I'm using docker compose because redis is one of my app'...
2 votes
2 answers
1k views
Do custom networks replace default network in docker-compose.yml
Does specifying custom networks in docker-compose remove services from the default network? I can't find any information about this. example version: '3' services: nginx: image: 'nginx:alpine' ...
0 votes
0 answers
28 views
Docker Compose Gluetun with Arr containers health check not enough
I have a single ymal file with Gluetun and some Arr containers with Gluetun providing the VPN here is my code for Prowler prowlarr: image: linuxserver/prowlarr:latest container_name: prowlarr ...
9 votes
1 answer
4k views
Trouble Formatting docker-compose.yaml in VS Code with Docker Extension
I'm experiencing an issue with formatting my docker-compose.yaml file in Visual Studio Code, and I'm looking for some guidance. I have installed the Docker extension from this link. When I open a ...
0 votes
2 answers
11k views
Nginx error failed (111: Connection refused) while connecting to upstream, docker-compose nodejs [closed]
I'm trying to build multiple services and reverse proxy them with nginx. So service1 is: http://api/service1 (nginx) => docker (http://service1:4001/) => express (http://localhost:4000) ...
39 votes
18 answers
105k views
ERROR: Get https://registry-1.docker.io/v2/: net/http: TLS handshake timeout in Docker
I went through this link: Docker push - net/http: TLS handshake timeout, but it did not solved my issue. I am simply running the https://github.com/sqshq/PiggyMetrics using the docker-compose up ...
Advice
0 votes
0 replies
49 views
How apply airflow db migration and save them into postgress docker image?
I use docker-compose to run airflow. Postgres section is postgres: image: postgres:12.16 environment: - POSTGRES_USER - POSTGRES_PASSWORD - POSTGRES_DB healthcheck: test: [ "...
1 vote
2 answers
4k views
How to add ext-http in Dockerfile
i have the following simple dockerfile to add php from alpine, FROM php:7.2-fpm-alpine # Install composer RUN curl -sS https://getcomposer.org/installer | php -- --install-dir=/usr/local/bin --...
4 votes
2 answers
2k views
cURL between Docker service php-fpm containers results in "Connection refused"
after looking for an answer 2 weeks along, going deep into the docker compose and docker networks documentations, I'd like to ask for some help right here. I am creating two Web API services, let's ...
1 vote
1 answer
513 views
how to insert a new service into docker-compose.yml using sed
I want to add a new service into docker-compose.yml with bash. this is how it looks: #!/bin/bash # Check if the file exists if [ ! -f "docker-compose.yml" ]; then echo "Error: docker-...
-3 votes
0 answers
91 views
Error in PostgreSQL when running Rails and PostgreSQL using Docker Compose
When I run the command on docker container backend: psql -h localhost -p 5432 -U postgres I receive the following error: psql: error: connection to server at "localhost" (::1), port 5432 ...
0 votes
0 answers
25 views
How to set up wger via docker compose on openmediavault? [closed]
I'm trying to set it up via the docker compose plugin in OpenMediaVault's GUI. Essentially we supply the relevant app's docker compose yml contents and then pull it - all via GUI. Here's the yml I've ...
7 votes
3 answers
9k views
How to add health-check for kafka in docker-compose [closed]
I need to add a health-check for the kafka service in docker-compose. kafka: image: bitnami/kafka:3.6.1 restart: always container_name: kafka ports: - '9092:9092' volumes: ...