32,390 questions
0
votes
0
answers
53
views
RabbitMQ .Net unsupported external secret error [closed]
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
36
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....
0
votes
0
answers
32
views
Docker Compose Gluetun with Arr containers health check not enough [closed]
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
...
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: [ "...
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 ...
-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 ...
-4
votes
0
answers
63
views
Restarting backend container became unreachable for traefik(504 Gateway timeout)
I’m having a problem and I can’t find a solution.
I have deployed a Django backend and a React frontend using Docker.
I’m using Traefik as a reverse proxy for the web server. When I start Traefik, the ...
1
vote
1
answer
53
views
Mikro-ORM migrations work locally but no tables in Docker container database
I have a NestJS app using Mikro-ORM and PostgreSQL.
I’m new to Dockerizing database migrations and Mikro-ORM in NestJS.
Locally, when I run:
npx mikro-orm migration:create
npx mikro-orm migration:up
...
2
votes
1
answer
82
views
How to reduce logging level in mongodb/mongodb-atlas-local [closed]
Problem:
I'm using the mongodb/mongodb-atlas-local Docker image in our CI/CD pipeline for running tests. While the verbose logging is acceptable for local development, it becomes problematic in CI/CD ...
-3
votes
0
answers
64
views
minio signature does not match golang api [closed]
I encountered a SignatureDoesNotMatch issue when switching MinIO from Docker Run to Docker Compose. I'm using PresignedUploadURLs to upload files from the frontend (React/Axios).
I've tried all the ...
0
votes
1
answer
77
views
WordPress + Rootless Docker File/Directory Permission Issue
I’m running a WordPress site (https://example.com) behind Traefik on a VPS using rootless Docker (Docker daemon socket is /run/user/1000/docker.sock).
Everything works fine except updating plugins ...
-2
votes
1
answer
110
views
docker-compose dependency on one .NET service ruins its healthcheck
I have the following docker-compose.yaml to roll my application. When I comment depends_on on newseo service, containers start with no issue and all healthchecks are passed. However, when I add ...
3
votes
2
answers
2k
views
After os updates I get `Error response from daemon: client version 1.42 is too old` [closed]
After apt update && apt upgrade I get docker compose issues:
DOCKER_API_VERSION=1.52 docker compose ps
# has expected result
docker compose ps
Error response from daemon: client version 1....
-1
votes
1
answer
58
views
Nginx with Docker not resolving domain redirection [closed]
I am trying to set up a home lab with HTTPS using Nginx.
I have made the self signed certs and for this demo I am using the local domain production.local.
My docker compose file for homer is
services:
...
-1
votes
0
answers
25
views
Connect node app running in docker to mongodb running in another container [duplicate]
I've a docker-compose, that declares 2 services, a mongo bd and a python scripts. If I run this docker compose up it works fine.
services:
mongo:
image: mongo:7.0
container_name: mongo_db
...