How is the underlying disk space (and associated technologies) for persistent storage usually configured in Docker [closed]

Closed. This question needs to be more focused. It is not currently accepting answers. Want to improve this question? Update the question so it focuses on one problem only by editing this post. Closed 3 months ago. This post was edited and submitted for review 3 months ago and failed to reopen the post: Original … Read more

What is the use of the lost+found directory?

I would like to use digitalocean’s block storage decive as a dedicated file system to manage Docker containers. The plan is to have this file system mounted at /var/lib/docker at boot time, before the Docker service is started. My attemps to do so thus far have been unsuccessful. While my playbook does not report an … Read more

AWS Application load balancer in switching between two frontends

I have two angular6 frontends, one running on port 4000, the second running on 4100. Do a Dockerized push to ECR and create two task definitions … create cluster and then 2 services of these two frontends, both are running on their ports well and good. Now I create an application load balancer with ssl, … Read more

Docker Host iptables

Using our stock iptables based on a default DROP policy, Dockerfiles based on Ubuntu or Debian are unable to resolve hosts on apt-get commands, making it impossible to build the files. If I change the default policy to ACCEPT it works as expected, so can confirm iptables is the problem. It’s there a set of … Read more

How can I redirect virtualhosts (different domain) on the same port (443) to different internal ports? [closed]

Closed. This question is off-topic. It is not currently accepting answers. Want to improve this question? Update the question so it’s on-topic for Server Fault. Closed 7 years ago. Improve this question I understand I can redirect HTTP traffic using Nginx. But what about non-HTTP traffic, Such as SSHD, etc? I’m asking because I have … Read more

Container (Apache) exit after 1 seconds

I’ve made a mistake in my apache2.conf and so every time I try to start the container, it exits: #docker start portail portail #docker ps -a CONTAINER ID IMAGE COMMAND CREATED STATUS PORTS NAMES 0c2cd80ab3fc jnyryan/simplesamlphp “/usr/sbin/apache2ct 25 hours ago Exited (1) 1 seconds ago portail So how can I resolve my problem? I’ve made … Read more