Questions tagged [docker]

Docker is an open source project that automates the deployment of applications inside software containers.

Docker is an open source project that automates the deployment of applications inside software containers. Docker extends a common container format called Linux Containers (LXC), with a high-level API providing a lightweight virtualization solution that runs processes in isolation. Docker utilizes LXC, cgroups, and the Linux kernel itself. Unlike traditional virtual machines, a Docker container does not include a separate operating system, instead it relies on the operating system’s functionality provided by the underlying infrastructure.

4147 questions
1
vote
0 answers

Apache interactive mode error

In my Apache container im facing an issue..! When i try to view the configuration files of my apache container in the interactive mode. It is giving me error. The command that i used in my terminal to enter the interactive mode is mentioned below…
1
vote
0 answers

How to set up multiple port forwarding rules?

I have recently set up multiple Squid proxy servers on my Rasp Pi 3 using Docker. I opened ports on my router, one server is accessible from port 3134 and the other 3135, however, this requires 2 different and separate port forwarding rules on my…
1
vote
2 answers

K3S arm64 distributed files systems

I deployed a K3S Cluster on arm64 and I need to have a DFS directly on-premise, It will be better to have it running on the kubernetes stack. Regarding DFS choices there are some options, but...: GlusterFS: Unfortunately CSI drivers is not currently…
GoA Oz
  • 113
  • 4
1
vote
1 answer

How can I block Docker from trying to resolve external DNS names?

I'm setting up a Docker container without internet access and it's slow. The container seems to try make DNS lookups which are bound to fail and only time out slowly. sudo docker network create --internal test-internal time sudo docker run --rm…
1
vote
1 answer

Docker inside virtual XEN Server

I'm running Docker containers inside a virtual machine (OpenSUSE). While running the container i'm facing lots of problems while binding ports to my containers..! Is it good practise to run docker inside Virtual machine..The Architecture for your…
Manikandan Ram
  • 399
  • 2
  • 15
1
vote
1 answer

Docker WILL NOT Run on boot/reboot 18.04 LTS

I am at the ends here, I have tried every possible thing I can think of or google in order to get docker to run on boot. this is what I have tried: systemctl enable docker systemctl enable docker.service even my wings.service for docker in…
Casper Round
  • 119
  • 6
1
vote
2 answers

whats the point in autoscaling containers

We are using vSphere technologies for virtualization and I am tasked with developing a scalable application infrastructure. I'm familiar more with AWS. Doing some research on scaling I'm not sure I understand the point in scaling containers like…
GolangFunk
  • 11
  • 2
1
vote
2 answers

How to get information about security updates for Alpine Linux?

I would like to get information that important package updates occured (e.g. connected with security updates) - so that I know, that I need to rebuild my Alpine-based images with apps. It could be sth similar to Debian's…
keypress
  • 241
  • 2
  • 8
1
vote
2 answers

Elastic Beanstalk Health Degraded

I am trying to to deploy an Node.js Docker image to Elastic Beanstalk using Travis CI. The tests and builds in Travis keep passing and successfully deploying however, I keep getting the following warn and error on my Elastic Beanstalk…
1
vote
0 answers

How to remove (or modify) ip6tnl0 and tunl0 interface from Ubuntu 16.04 running in Docker

I am currently running Ubuntu 16.04 in Docker and need to get rid of (or adjust) /sys/class/net/ip6tnl0 and /sys/class/net/tunl0. The reason is that I need to install software that crashes when those interfaces are present. The precise reason is…
1
vote
1 answer

Docker / mySQL / MailCow [2002: Connection refused]

I am confronted with the following problem: 2002: Connection refused (mysql) Information about my cloudserver: 1 vCPU / 2 GB RAM / 20 GB NVMe SSD NO SWAP in standard-image from Hetzner (Provider) If I run out-of-memory, mysql-server goes down and…
OMEXLU
  • 11
  • 3
1
vote
1 answer

Dockerize production Linux server

I got a task to care about a production server (Ubuntu 18.04 LTS, NGINX, Node.js, MYSQL). Beside backup (which is regular) I want to prepare as much as possible for quick migration (to nonexistent staging and development server and into new cloud…
JanezKranjski
  • 133
  • 1
  • 8
1
vote
0 answers

Laradock + Standalone NginX

I have a Laravel project that needs PHP 7.1 but on the server, we use 7.2. We have separate nginx config files for each project and they all work fine. I've decided to go laradock and serve PHP 7.1 for the project. Starts up like a charm out of the…
Bert
  • 1,028
  • 1
  • 16
  • 33
1
vote
1 answer

Need help setting up traefik over WAN and LAN

So I'm building a media server via docker that is supposed to be accessible from everywhere (the host, the whole host's LAN, the WAN). Basically i have a bunch of web interfaces each. Each interface is by default accessible under a specific port but…
1
vote
1 answer

Installing drivers into docker image for kubernetes deployment

I am accessing a USB Card reader on an Ubuntu 18.04 node. Here is what is installed on the Ubuntu 18.04 node to access the USB Card reader: sudo apt-get install pcscd sudo apt-get install pcsc-tools // same as pcsc-lite …
Steven Smart
  • 113
  • 2