32,574 questions
0
votes
0
answers
21
views
Spring Boot Redis connection refused: localhost:6379 using Docker Compose
I'm new to docker and I'm trying to run redis-server and my springboot app both on a container.
The Redis server is running fine on docker but when i try to connect my spring boot app to the redis ...
0
votes
0
answers
16
views
Metabase white screen after docker-compose deployment
I'm having a problem using Metabase locally. I built a Docker image, which I used for my Docker Compose setup. Everything looks like it started great, but when I head over to localhost:3000, I only ...
0
votes
0
answers
21
views
How can I switch easily between two databases in one docker compose container?
I have set up an php laravel sql platform with docker compose with the following docker compose.yml. I only have one database(with production data) but I also want to test out somethings with dummy ...
-1
votes
2
answers
32
views
Docker not copying files to folder after building site
I am trying to build a docker container which clones a repository from my GitHub account, builds the react website and then serves it via nginx.
I already got the cloning and building to work, the ...
0
votes
1
answer
32
views
The cache, users, jobs and personal_access_tokens tables are not created in Laravel's public folder
When creating a postgres database, the following tables are not automatically created:
enter image description here
As I understood they should be created in the 'public' folder, but it is empty.
I ...
0
votes
1
answer
16
views
How to pass variables accessible from VsCode devcontainer.json to docker-compose.yml
In devcontainer.json we have access to these variables:
${localWorkspaceFolder}
${containerWorkspaceFolder}
${localWorkspaceFolderBasename}
${containerWorkspaceFolderBasename}
I have tried making ...
0
votes
0
answers
18
views
Call Docker image from a running container [duplicate]
So, I have the following Dockerfile to create my Lucee image (I named the built image as "basic").
FROM lucee/lucee:latest
RUN mkdir -p /var/www
COPY www/ /var/www/
And I use this image ...
0
votes
0
answers
24
views
Docker RewriteEngine / RewriteRule
For my container, I am wanting all request to get rerouted to the sub directory 'front', so if the request where just (localhost or localhost/index.html) in this case, I would want the request to be ...
0
votes
0
answers
27
views
How do I integrate Caddyfile with ASP.NET Core 9 with Angular application to set https on local environment?
I have an ASP.NET Core application with Angular. This is how I created my project:
mkdir <solution_name>
cd <solution_name>
dotnet new sln --name <solution_name>
mkdir src
cd src
...
0
votes
0
answers
22
views
Docker compose credential error (after succesful docker login)
On Linux, using Docker daemon:
$ docker --version
Docker version 28.0.4, build b8034c0ed7
$ docker compose version
Docker Compose version 2.35.0
$ docker login -u <uid>
i Info → A Personal ...
0
votes
1
answer
59
views
In CVAT (OPA?) allow 'Private Range'
I run CVAT from docker-compose.yml and try to access S3 in my local network, but I facing with an error,
in the UI:
"Could not create the cloud storage \n resource: The resource
<my-bucket>...
0
votes
0
answers
15
views
Incorrect configuration of Kafka in Kraft mode cluster with KAFKA_SASL_MECHANISM_INTER_BROKER_PROTOCOL: SCRAM-SHA-512
Trying to start Kafka in Kraft mode with image: apache/kafka:3.9.0
with next podman compose of config first node:
kafka-1:
hostname: kafka-1
container_name: kafka-1
image: apache/kafka:3....
-1
votes
1
answer
75
views
Display names of all port mappings in Docker
I have a container that runs many MFEs inside it. In the docker compose file all the port mappings are listed as:
mfe:
ports:
- 1999:8002 # authn
- 2001:8002 # authoring
...
0
votes
1
answer
39
views
Redis fail after some time and need to restart again [closed]
I have deployed redis on server and it is used by different services but after some time I face this issue always and i need to restart the service to make it work again.
1:S 25 Mar 2025 07:25:32.326 #...
1
vote
0
answers
54
views
Next.js docker container hangs during compilation step
I have a multi container development environment that I spin up using docker compose. The frontend (Next.js) is defined in a Dockerfile as such:
FROM node:20-alpine
WORKDIR /app
COPY package*.json ./...