Skip to main content
Filter by
Sorted by
Tagged with
-1 votes
0 answers
31 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
76 views

I can build an image with this Dockerfile that is based on a lightweight Docker image that use Alpine: FROM php:8.4.15-cli-alpine RUN docker-php-ext-install opcache But I can’t build an image after ...
A.L's user avatar
  • 10.6k
2 votes
1 answer
48 views

Hoping to get yalls help on the issue I am now sort of desperate about Context: I am deploying a docker container on EC2 Ubuntu, where it is used by two images - one for my Prisma-NestJs-based API and ...
groove_of_course's user avatar
0 votes
1 answer
34 views

I try to run jupiter notebook with docker. I run this in my terminal: docker run -it -v $(pwd):/home/optimus/localwork --workdir /home/optimus/localwork -p 8888:8888 optimuslib/optimus:latest I ...
O Oz's user avatar
  • 11
-3 votes
0 answers
36 views

I'm trying to build a Docker image for a Node.js + React application and keep getting this error during the build: COPY failed: file not found in build context or excluded by .dockerignore: stat src: ...
Mina Golzari Dalir's user avatar
1 vote
1 answer
32 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
0 votes
1 answer
34 views

I am using SpringBoot 3.5.7 to build docker image with ./mvnw spring-boot:build-image. I also use a custom Spring Starter, that contains some common code, but also some common configuration settings ...
igr's user avatar
  • 10.7k
-6 votes
0 answers
48 views

When I want to debug my code in the server while the environment is in my dockers, and ChatGPT suggests my downloading Remote-Containers to make the VsCode running in the docker directly, but I cannot ...
Ricky Xu's user avatar
-2 votes
0 answers
65 views

I'm trying to access PostgreSQL from within my backend application using Docker, but I'm getting the following error: User.last #=> There is an issue connecting to your database with your username/...
andbri321's user avatar
0 votes
0 answers
38 views

Here is the Dockerfile # ===== Stage 1: BUILD OTP 27.2 ===== FROM debian:bookworm AS build RUN apt-get update && apt-get install -y \ build-essential \ autoconf \ automake \ ...
Rumal Gunawardana's user avatar
0 votes
0 answers
45 views

I'm using docker image to deploy my asp.net application and i'm facing 2 issues. The first one: after some deployes the api list still the same although a made changes on it (it seems like image ...
Zohir Boshi's user avatar
0 votes
0 answers
34 views

I'm running a Redis Cluster with 6 nodes (3 masters, 3 replicas) in Docker containers on Windows using bridge networking. Each container maps its port (e.g., 7010:7010, 7011:7011, etc.) so external ...
user732456's user avatar
  • 2,716
-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
-1 votes
0 answers
23 views

I am trying to deploy my Godot game, in docker to google cloud run, but even after isolating the issue, the wasm fails to load. It works on itch.io and locally. How can I get the wasm to load?
Beshoy Hanna's user avatar
0 votes
1 answer
65 views

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 ...
M. Safari's user avatar
  • 319
0 votes
1 answer
40 views

I use CDK to generate a CloudFormation stack. When I run cdk synth and cdk deploy, the ECR image and the Task definition don't get updated. In order to force the update, I have to: delete the built ...
Gabriele's user avatar
  • 751
0 votes
1 answer
100 views

After upgrading Docker on my Ubuntu 24.04 Servers to version 29.0.0, Swarm services suddenly inherit: Max open files: soft=1024, hard=524288 MongoDB, Redis, etc. suddenly throw file descriptor errors ...
finisinfinitatis's user avatar
Advice
0 votes
4 replies
40 views

I am building a Python package which hevily relies on the Docker daemon. I am using Pixi as a package manager for Python and have the Pypi Docker SDK in my dependencies however my package wouldn't ...
Umberto Fontanazza's user avatar
-1 votes
1 answer
42 views

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: ...
JamesMcC's user avatar
1 vote
1 answer
52 views

When I run a Docker container on my system (ARM MacOS, with Docker Desktop), I see that /sys/devices/system/node is not present: docker run -it ubuntu:24.04 # ls /sys/devices/system clockevents ...
Daniel Porteous's user avatar
Best practices
0 votes
4 replies
64 views

this is a beginner's question but after a week of looking around I haven't found an answer, except for a nine-year old posting that doesn't mention named volumes. So I have this dockerfile (more or ...
Volker's user avatar
  • 1,849
0 votes
0 answers
14 views

We recently switched the lock provider in our Magento 2.4.2 devstack from the default database to zookeeper. Initially, everything works fine, but after some time, Magento starts throwing the ...
Luboš Hubáček's user avatar
0 votes
0 answers
30 views

Clion offers a perf integration for profiling applications. Getting this to work when using a docker toolchain is not described online. Is it possible to do this, and how does one manage the different ...
Jack's user avatar
  • 61
1 vote
1 answer
59 views

I have a strange issue with js files that cannot be found in a flask app, for which I use nginx in a docker container. In the HTML template, I have this ref, using the url_for function <script type=...
Langtec's user avatar
  • 105
Advice
0 votes
1 replies
37 views

if I import a gpg key during Docker build, it starts a gpg-agent and keyboxd process, which then get terminated abruptly and do not clean up their lock files. So if I then try to interact with gpg ...
Max Allan's user avatar

1
2 3 4 5
3114