Unanswered Questions
1,879 questions with no upvoted or accepted answers
9
votes
0
answers
3k
views
connect to tightVNC in a windows container
There are plenty of resources online about using VNC with a linux container, but none that I can find for windows containers, so I thought I'd give it a crack.
I can get the tightVNC server to start (...
8
votes
2
answers
5k
views
Best way to log to two different CloudWatch log streams from an ECS container?
We are running our services on AWS's ECS platform, and we send our logs to AWS CloudWatch.
We have two types of logs, any container can produce either type:
the usual application logs (access, error, ...
7
votes
0
answers
7k
views
Is there a way to flush docker's embedded dns cache?
I'm working in an environment where sometimes the DNS server flakes out and tells you it can't resolve a host (eg. lookup of "github.com" fails). It's transient, and usually recovers fairly quickly. ...
7
votes
0
answers
2k
views
How to estimate storage and traffic used for docker images in AWS ECR?
I'm trying to esimate monthly cost of using AWS ECR. It will consist of: outgoing traffic cost (downloading images) and storage cost (storing images in ECR).
Let's assume, that:
We are building some ...
6
votes
0
answers
8k
views
docker-compose `restart: always` randomly not working
I administer a few Debian servers with Docker CE installed and docker-compose orchestrating several services (roughly 20 containers per machine)..
Every single service is configured with restart: ...
6
votes
0
answers
4k
views
`registry-mirrors` with Harbor as pull-through registry cache
I am trying to configure Harbor as a pull-through registry linked to Docker hub.
While I manage to pull images by prefixing them per the doc, I cannot make it work by using the registry-mirrors Docker ...
6
votes
1
answer
5k
views
Route host through a docker openvpn container
I am new to networking so I am trying this for the first time. I created an openvpn docker that connects to a VPN server. Running wget -q -O - https://api.myip.com inside the docker container confirms ...
6
votes
0
answers
2k
views
Possible to VNC/RDP into Docker Windows Containers with GPU passthrough?
Use-case: Automated QA of video games
Within the past 6 months it seems Microsoft and Docker have put a lot of effort to enable GPU passthrough for docker windows containers.
GPU Acceleration.
GPU ...
6
votes
0
answers
11k
views
Run openvpn inside docker and use as gateway for internet for other networked devices
I am trying to run tunnel all my network traffic on my LAN via an OpenVPN client running inside a docker container.
My router and default gateway is running on 10.10.10.1
I have OpenVPN running on ...
6
votes
0
answers
558
views
Updating to latest Docker images in Elastic Beanstalk Multicontainer
I'm running a site on Elastic Beanstalk using a multi container set up. I'm wondering what is the preferred strategy to pull in the latest images.
On the CI server, after successful commits to master,...
6
votes
2
answers
4k
views
How does docker stats output relate to top output?
I've got a process running in a Docker container on Linux, with a 2GByte memory limit. (The container is started with docker run --memory=2g.)
Here is what top says about it after it's been running ...
6
votes
1
answer
3k
views
docker network freezing randomly
Sometimes , all network's of my dedicate server is freezing (ssh also not working). it's randomly repeated.
OS: Ubuntu 14.04.3 LTS
On server installed docker containers, and i see in dmesg logs:
[...
5
votes
0
answers
2k
views
systemd-udevd spams systemd-udevd[1523120]: veth20996a5: Failed to get link config: No such device
I have setup my server logging with graylog and now I see that my logs are being spamed by level: 3 errors like these:
systemd-udevd[1523120]: veth20996a5: Failed to get link config: No such device
I ...
5
votes
0
answers
3k
views
Ports exposed by docker container are shown as filtered - unable to connect
I am working on a fresh server installation of Ubuntu 20.04
I started a sample nginx by running docker run --rm -p 80:80 nginx
Port 80 appears to be open on the machine, I cant curl the nginx default ...
5
votes
0
answers
2k
views
Best way to add "Virtual Path" to application running inside docker container
Current Situation
I have 2 applications running inside Docker Container, one is an angular app and the other is a .Net Core WebApi. Each one has a binded port, (WebApi is running on 8090 host port, ...