Skip to main content
Filter by
Sorted by
Tagged with
-1 votes
0 answers
33 views

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 ...
Mario Petkovski's user avatar
1 vote
1 answer
34 views

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 ...
dumpAndDie's user avatar
-2 votes
0 answers
59 views

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 ...
Ildar Sufiyarov's user avatar
-2 votes
1 answer
105 views

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 ...
waifu_anton's user avatar
0 votes
0 answers
22 views

I have a gitea running as a stack in docker. I also have watchtower running on teh same docker instance. I find that as releases get pushed out - my gitea goes through the install page - which is ...
baradhili's user avatar
  • 587
0 votes
0 answers
23 views

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 ...
hcarrasko's user avatar
  • 2,352
0 votes
1 answer
44 views

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-...
SomeoneElse's user avatar
0 votes
0 answers
59 views

I’m setting up a WebRTC video calling system based on Spring Boot 3, Kurento Media Server, and coturn, all running inside Docker. The goal is to make peer-to-peer media connections (doctor–patient ...
AllodyUser 's user avatar
-1 votes
0 answers
65 views

I'm attempting to read a parameter from aws parameter store in my spring boot application. I succeeded on my local machine but I want to make this function without having to supply my access-key and ...
Lucas Lopes's user avatar
2 votes
1 answer
97 views

I have locally installed MediaWiki using Docker Compose, as described in the documentation. It works as expected. My project folder contains only LocalSettings.php and compose.yaml. The latter now ...
Watchduck's user avatar
  • 1,209
2 votes
0 answers
57 views

I run MinIO in Docker on Machine A and want to access it from Machine B (via Wi-Fi). boto3 returns 503 on HeadBucket, and the mc alias set fails. How should I configure MinIO and clients? docker yml ...
user2330646's user avatar
-1 votes
1 answer
179 views

I have a Visual Studio 2022 solution with eight existing projects: three "ASP.NET Core Web API" projects, three "xUnit Test" projects, one "Class Library" project, and ...
J Earls's user avatar
  • 2,781
-1 votes
1 answer
63 views

I have a very simple Docker project setup with a vscode devcontainer. There are two Docker containers, dev and db This works! I open the project in the devcontainer and everything works fine, until i ...
Nique's user avatar
  • 581
1 vote
1 answer
212 views

I have a Django app build by uv running inside Docker. I mount the local filesystem as a volume in the container using Docker Compose so that edits to the source code locally trigger reloading of the ...
trubliphone's user avatar
  • 4,586
1 vote
0 answers
37 views

I have a MongoDB Docker container, running locally. I have set this up using the following file, docker-compose.yml services: mongodb: container_name: mongodb-local image: mongo:latest ...
user2318704's user avatar
2 votes
1 answer
98 views

Why does Spring Boot try to connect to localhost:6379 when running inside Docker, even though I set SPRING_DATA_REDIS_HOST=app-redis in the environment variables? How can I make it connect to the ...
almubarak96's user avatar
0 votes
0 answers
39 views

I'm running Serenity BDD tests inside a Docker container as part of an Azure Pipeline. The tests are executed using Microsoft Edge (via Selenium Grid), and the video recordings are published as ...
poisn's user avatar
  • 447
4 votes
1 answer
120 views

I'm using Docker Compose to run a simple HTTP server on multiple replicas to test Load Balancing capabilities of Docker Compose and Nginx. There are 2 services in the docker-compose.yml file: services:...
Joe Doe's user avatar
  • 93
0 votes
1 answer
75 views

I am converting docker containers into Custom Apps of TrueNAS 25.04 managing them in the WebUI. It should prevent iX from messing them unnoticeably. A Custom App can be created from filling in the ...
crackpot's user avatar
  • 425
0 votes
0 answers
68 views

I'm using a newer version of airflow (airflow:3.0.6) with docker compose. Essentially I have just copied and slightly modified the official docker-compose file provided by Airflow itself: https://...
Qohelet's user avatar
  • 1,661
0 votes
1 answer
62 views

I am making a websocket webgame. I am trying to standardize data going over the websocket via some shared "Action" objects. I am using docker volumes to share a "shared" directory ...
Pinkflamess's user avatar
0 votes
0 answers
47 views

I have a docker application that we have deployed on a clients Windows 2022 server. As part of the clients security protocol the server does occasional restarts. I'd like the app to be redeployed ...
asett's user avatar
  • 23
0 votes
1 answer
76 views

I have mongodb in a docker using this YML file. services: mongodb: image: mongo:latest container_name: mongodb restart: unless-stopped environment: MONGO_INITDB_ROOT_USERNAME: ...
mohamed's user avatar
  • 661
2 votes
1 answer
432 views

My docker compose config is: services: keycloak: image: keycloak/keycloak:latest container_name: keycloak ports: - 7080:7080 - 7443:7443 ...
vbulash's user avatar
  • 395
0 votes
1 answer
71 views

Kafka Zookeeper insists on using NIOServerCnxnFactory as the connection factory, even after setting serverCnxnFactory=org.apache.zookeeper.server.NettyServerCnxnFactory. The grep log for this issue: [...
Sandman's user avatar
  • 1,579

1
2 3 4 5
648