Questions tagged [docker]
Docker is an application to create containers for applications.
1,793
questions
0
votes
0
answers
5
views
How to connect volumes running in docker for Owncloud to the host's vm folders?
I am trying to configure Owncloud in docker. The docker-compose yaml I am using look like this:
services:
owncloud:
image: owncloud/server:10.15
container_name: owncloud_server
restart: ...
0
votes
0
answers
9
views
is it possible to output the verbose info when using docker push to upload images
When I tried to using this command to upload some image to center hub:
➜ ~ docker push registry.cn-qingdao.aliyuncs.com/reddwarf-public/prom/node-exporter:v1.8.2
The push refers to repository [...
0
votes
0
answers
21
views
Loading volume into docker container
I am using Ubuntu on my host machine, and I have a docker container also running Ubuntu that contains an ASP .NET website. Now the issue is I can't seem to figure out how to get the container to mount ...
0
votes
1
answer
14
views
Podman and Docker: Sharing a network and/or hostname resolution between services?
So I have a docker network named home that all of my root-based (or docker containers that were simply too hard to port to podman) containers live.
sudo docker network ls
NETWORK ID NAME ...
2
votes
0
answers
130
views
Artifactory-oss 7.98.8 "Unsupported operation: federated"
I have deployed with docker compose the OSS 7.98.8 version of Artifactory (using the image releases-docker.jfrog.io/jfrog/artifactory-oss:7.98.8) along a postgres database (using the image releases-...
0
votes
0
answers
16
views
Running vsftpd in Docker (Swarm)
I want to use a vsftp-Server in my Docker Swarm but having some network issues. I have the following compose-file:
services:
vsftpd:
container_name: vsftpd
image: million12/vsftpd
...
0
votes
0
answers
18
views
Why is runc a separate program from the container runtime?
As runc is a necessary dependency in order to interface with the container runtime, why is it developed separately instead of being integrated to the container runtime project?
For example, containerd ...
0
votes
0
answers
18
views
avoiding __uint128_t in libc when cross compiling for 32-bit targets
I'm attempting to build a 32-bit toolchain in a docker container with an aarch64 architecture. I have explicitly called --without-long-double-128 in my first pass of gcc but glibc is failing compile ...
0
votes
1
answer
93
views
Attach gdb from a docker container to a process running in a different PID namespace
I built a docker image with gcc binutils and gdb debugger installed inside.
I would attach gdb from that docker container to a process inside a lxc container running on the same Linux host. The lxc ...
1
vote
1
answer
136
views
How to get docker-compose back in Fedora 41?
After upgrading Fedora 40 to 41, docker-compose was no longer available.
When I try to re-install with sudo dnf install docker-compose, it raises the following conflicts:
- installed package docker-...
2
votes
0
answers
66
views
How to enable direct connection to Tailscale's exit node with Gluetun
This is a Docker setup that runs a Tailscale node, routes traffic through Gluetun with NordVPN connected, and advertises the Tailscale node as an exit node.
services:
gluetun:
image: qmcgaw/...
0
votes
0
answers
25
views
Simulate an Audio Device in Debian
I'm trying to run the latest version of Stardew Valley in a Docker container to run it as a server setup (for the record, I own the game and am using my own purchased copy to do this, per this ...
0
votes
1
answer
28
views
The Dockerfile for the build of the Jenkins Docker Image specifies a user. How does this work?
There are a few Dockerfile in the Git repository for Jenkins Docker Images.
I found this one, which I think is a suitable example to look at:
https://github.com/jenkinsci/docker/blob/master/debian/...
0
votes
0
answers
21
views
Default to deny in iptables using Docker
I've been looking into tightening up firewall restrictions on Docker hosts and I'm having fits with Docker's default iptables behavior. To make this question as simple as possible. imagine the ...
0
votes
1
answer
33
views
Apache ServerName with protocol
I have this custom.conf for a Apache Docker container
ServerName https://staging.smartreparatur.at
# Enable Gzip compression (Deflate)
<IfModule mod_deflate.c>
AddOutputFilterByType DEFLATE ...