Questions tagged [docker]
Docker images, containers, hub, and everything related to the containerization platform
1,189 questions
0 votes
0 answers
4 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 ...
0 votes
1 answer
28 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
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 ...
3 votes
1 answer
411 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
21 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
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
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
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 ...