Skip to main content

Questions tagged [docker]

Docker is an application to create containers for applications.

Filter by
Sorted by
Tagged with
0 votes
0 answers
24 views

I know this will be a bit of a stretch but... So I'm running ArchLinux on a Desktop PC with an i5, RX 6800, and a Realtek Wifi card from TP Link. I installed the linux wifi hotspot AUR package and ...
Benoît Roumain's user avatar
1 vote
0 answers
20 views

I've been trying to get ClamAV's clamonacc on-access scanner to monitor the overlay2 file system where Docker container file systems are mounted on my Linux (Ubuntu 24.04) VM, so that I can detect any ...
TPJ's user avatar
  • 11
1 vote
0 answers
49 views

I inherited two servers, a production server (wglsbi02) and a mirror/backup server (wglsbi01), that were originally set up by someone who has since left the company. I’m not an experienced system ...
Manuel Dominguez Becerra's user avatar
1 vote
0 answers
77 views

I need to run c++ application inside a docker container and it is deployed using AWS ECS. The application should run as user abcd and it should be able to generate core files. Initially I had a run ...
wika's user avatar
  • 39
0 votes
1 answer
42 views

I'm thinking about using a Docker container to present complex networks, some causing some trouble, being misconfigured or else: it's for testing purpose. networks: frontend: driver: bridge ...
Marc Le Bihan's user avatar
1 vote
1 answer
66 views

I'm trying to develop J2ME game on Linux using this guide by microgram dev. The j2me emulator from Oracle Wireless Toolkit works totally fine after Linux reboot. I run some other apps like browser, ...
d9k's user avatar
  • 111
1 vote
1 answer
57 views

I am writing a bash script and I am aware that I can get information of the mounts attached to a container using docker inspect --format '{{.Mounts}}' <container-name> which gives a result such ...
neildeadman's user avatar
0 votes
3 answers
217 views

Say I have an executable 'foo' and it is typically called with arguments, for example "foo -a1 v1". And 'foo' happens to be a resource hog, so I want to run something like "nice -n 10 ...
Neros's user avatar
  • 179
1 vote
1 answer
170 views

I have been trying to run systemd in a container to test out an existing project before it gets deployed to hardware. systemd seems to work, but LoadCredential doesn't, even though it works on the ...
Alex028502's user avatar
2 votes
1 answer
299 views

I am configuring a single-node proxmox server for use as a home server/homelab. I am looking to run many of my generic applications (like immich, jellyfin, etc) in docker containers, which could all ...
hdconway's user avatar
0 votes
0 answers
43 views

I need to extend the aws cli docker image with some custom scripts I have created a docker file and am copying the script files into a directory when using the docker file in my gitlab job I get the ...
xerxes's user avatar
  • 359
3 votes
2 answers
169 views

I have a minimalistic pod that holds a small python program. I've added the source to $HOME/.profile but it does not autorun. How can I autosource it when I log in? docker run -ti <internal-docker-...
MortenB's user avatar
  • 413
0 votes
1 answer
73 views

I can't seem to be able to use a $VARIABLE reference in --from part of COPY instruction $ docker build - <<<' > ARG DOCKER_REGISTRY=docker.io FROM $DOCKER_REGISTRY/library/docker:24-cli ...
Jakub Bochenski's user avatar
1 vote
1 answer
71 views

We want to run CI/CD for our saltstack formulars. With debian buster it worked fine; now I try it with bookworm and I get some errors. My CI-yaml file in gitlab looks like this: image: name: debian:...
colttt's user avatar
  • 111
1 vote
0 answers
174 views

I'd like to use socat to redirect the STDIN/STDOUT of the process executing docker attach <container-id> to a listening TCP socket on my Linux system. root@eve-ng:/opt/unetlab# tty /dev/pts/2 ...
CarloC's user avatar
  • 385
1 vote
0 answers
36 views

📝 Body: I'm running Gqrx SDR inside a Docker container on my local macOS machine using: Openbox for the window manager Xvfb for the X11 display x11vnc + noVNC to stream the GUI via browser Docker ...
nick97's user avatar
  • 11
-1 votes
2 answers
356 views

I have PHP-FPM pool with such configuration blocks: ... listen = 0.0.0.0:9000 ... pm.status_path = /status ... I'm getting curl: (56) Recv failure: Connection reset by peer while trying curl 0.0.0.0:...
Aleksey's user avatar
  • 75
0 votes
0 answers
71 views

I run a Cisco XRd docker container on my Linux Ubuntu host. I run the image using docker run -it -d command. The image's entrypoint is /usr/sbin/init, indeed: root@eve-ng-6:/opt/unetlab/html# docker ...
CarloC's user avatar
  • 385
0 votes
1 answer
105 views

I've a docker container running on my Linux host. root@eve-ng-6:~# docker ps CONTAINER ID IMAGE COMMAND CREATED STATUS PORTS NAMES ea25d3afa65d ...
CarloC's user avatar
  • 385
0 votes
0 answers
66 views

My host is on alpine Linux and I'm running a jenkins agent on docker. I need the jenkins agent to be able to run a script when it does a build that changes the ownership of a few directories. Every ...
andcbii's user avatar
0 votes
1 answer
187 views

I have an docker file where the base image is set to debian:stretch-slim. The default version of python3 is python3.5 in this image. FROM debian:stretch-slim as base-os .... .... RUN python3 -V RUN ...
Hemant Bhargava's user avatar
1 vote
1 answer
64 views

I would like to install java in final dockerfile stage from postgres:9, and I have to change following outdated addresses: RUN sed -i s/deb.debian.org/archive.debian.org/g /etc/apt/sources.list RUN ...
Gromisław Sosenkowski's user avatar
0 votes
0 answers
96 views

I'm trying to dockerize a rpc application I made using C lang and rpcgen, I have the byte executable and everything, I tried a lot of docker os image like ubuntu 22.04/ debian and so on, the ...
ALLAOUA Okba's user avatar
0 votes
0 answers
87 views

I'm currently trying to create a docker container that acts as an ssh server. The login should be handled by the Google Authenticator (GA) PAM module, which implements time bases one time password ...
user3792852's user avatar
3 votes
1 answer
374 views

I have an issue setting up my firewalld to have a perfect link together with docker and fail2ban. First, what I want to achive is the following traffic routing setup: [PUBLIC] -> [FIREWALLD] -&...
Marco Klein's user avatar

1
2 3 4 5
37