Questions tagged [docker]
Docker images, containers, hub, and everything related to the containerization platform
1,189 questions
0 votes
0 answers
9 views
Unable to find Libcrypto on Ubuntu Docker container with Django Python
For a Django Python project, I develop in a Docker container. The oscrypto Python package I need is unable to find the Libcrypto library on the Ubuntu container. The Docker image is ubuntu:24.04. I am ...
1 vote
0 answers
17 views
React + Docker: Hot reload doesn’t work when using bind mount
I’m a beginner with Docker and DevOps, and I’m trying to containerize a small React quiz app that uses json-server to serve local data from data/questions.json. My goal:I just want to edit my code (...
0 votes
1 answer
33 views
Loki not getting my container logs
I have this config for loki to get all my container logs { - job_name: docker docker_sd_configs: - host: unix:///var/run/docker.sock refresh_interval: 5s relabel_configs: - ...
0 votes
0 answers
34 views
NestJS Docker container becomes unresponsive
NestJS Docker container becomes unresponsive and cannot be stopped after high MQTT load (1 message per seconde for a few hours) Environment Host OS: Ubuntu Linux Stack: NestJS application in Docker ...
0 votes
0 answers
36 views
How do I configure a docker compose network with no IPAM?
I have a container that we deploy into a very customised networking setup. The container starts a DHCP and DNS server internally and expects to do IPAM on the network it is connected to. I'm trying ...
0 votes
1 answer
68 views
How to configure container (docker compose) to start with "bash" in "Exec" of Docker Desktop?
(Was asked here, was closed because "not about programming or software development.") Situation: I have a Docker Compose setup with multiple containers from different images. I have Docker ...
3 votes
1 answer
434 views
What are the alternatives to Kaniko for building and pushing Docker images?
I run multiple GitLab CI jobs that use Kaniko to build Docker images and push them to my private GitLab registry. My GitLab Runners use the Docker executor with privileged = false, and this setup has ...
0 votes
0 answers
14 views
How do I write Dockerfiles for framework-specific projects like Laravel and React?
I’m new to Docker and Docker Compose. I want to run a Laravel API in one container and a React frontend in another. Docker Hub has an image for Laravel, but I was told that isn't best practice to use ...
0 votes
0 answers
24 views
How can I use System.AccessToken to authenticate a private nuget feed inside WSL/linux subsystem?
On the VM where my self-hosted azure agent is running, I have a linux subsystem installed where I want to build docker images. Currently, I'm using powershell to run my docker build command inside the ...
0 votes
0 answers
24 views
What is the best approach to debug a docker network issue on Ubuntu host?
I am suspecting that either I did not understand anything about docker container networking from the documentation or I have some configuration issues on my host. It is my understanding that opening ...
0 votes
0 answers
22 views
Deploy server to be accessible from another device
I try to deploy a server which uses a SQL database, so I want to deploy the Docker image on a container A which will need the Postgres container B and I need this container A to be accessible from ...
0 votes
1 answer
46 views
How can I correctly allow the Cloud Run domain in Astro’s astro preview so it works with Vite’s host restriction?
I’m deploying an Astro app to Google Cloud Run using the following (simplified) Dockerfile: FROM node:18-alpine AS base WORKDIR /app RUN apk add --no-cache libc6-compat COPY package.json package-lock....
0 votes
1 answer
54 views
how to access to a directory in docker container
I have the following Dockerfile: FROM mariadb:latest ENV MYSQL_ROOT_PASSWORD=123 COPY ./init-scripts/ /docker-entrypoint-initdb.d/ EXPOSE 3306 WORKDIR /root/java VOLUME /root/java And I build my ...
0 votes
0 answers
43 views
Slow internet from Docker container (+ cilium, k8s, linux, nat, windows)
I just ran into in issue I spent 2 days debugging & investigating and I don't have much progress. Summary: I do wget 'url' from Linux VM and downloading the file with approximately 50Mb/s speed. ...
0 votes
0 answers
41 views
Running sysbox on an initrd device does not work - jailing process inside rootfs caused: permission denied: unknown
I am trying to run sysbox inside a physical device. It has kernel 6.1.107 which was compiled by me. I've added all the necessary kernel modules in the kernel's x86_64-all.config. iptables/nf/netfilter ...