32,398 questions
Advice
0 votes
0 replies
41 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
24 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
82 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
59 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
49 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
79 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 ...
-2 votes
0 answers
62 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
75 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
46 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: ...
0 votes
0 answers
23 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 ...
0 votes
0 answers
46 views
Application running in Docker containers the application restarted using Amazon RDS Aurora MySQL for the database and experiencing out-of-memory issue
UncaughtException: Out of memory; check if mysqld or some other process uses all available memory; if not, you may have to use 'ulimit' to allow mysqld to use more memory or you can add more swap ...
0 votes
1 answer
47 views
How do you write a docker compose file so that it recognizes a Redis config file and a custom username/password
How do you write a docker compose file so that it recognizes a Redis config file and a custom username/password (I am trying to use an ACL file, see below) that is not hardcoded into the Redis-stack-...
-2 votes
0 answers
73 views
Creating a stack in portainer with docker compose in R
I would need how to create the yaml to deploy the stack making sure it has alll these libraries and that it uses these ports Libraries: 1.1- openxlsx 1.2- xml2 1.3- rdflib 1.4- jsonld 1.5- jsonlite 1....