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
1 answer

Make trusted self-signed certificate not register as "self-signed" (i.e. trusted) on private network

I'm currently implementing a private Docker Registry server with nginx configured to forward https traffic securely to the running Docker Registry (i.e. docker-compose) instance on a private network (with DNS, DHCP configured). I have the entire…
Rolf
  • 11
  • 1
1
vote
0 answers

How to connect to localhost in Docker in Windows Server 2016

Background: Am using Windows Server 2016 Have installed Containers Have installed Docker (not Docker Desktop / Docker for Windows): https://docs.docker.com/install/windows/docker-ee/ Have multiple containers running on the same server I need…
A X
  • 469
  • 4
  • 10
  • 31
1
vote
0 answers

Connection refused from signle host Ubuntu

I have an Ubuntu 16.04 running on machine A. It has a docker container running inside of it, which exposes the port 8080 to the outside (this is where the server(Wildfly) that is running inside the docker container is listening). I am able to access…
user3362334
  • 121
  • 4
1
vote
0 answers

configuring subdirectory in a wordpress installation for proxy pass to docker application

I have a wordpress installation using Nginx as the web server, now there is a need of adding moodle as the LMS to the same site, as a subdirectory, for example; www.mysite.com is where the wordpress site works then moodle would be…
Anadi Misra
  • 527
  • 2
  • 9
  • 23
1
vote
0 answers

Jenkins: Docker plugin, "All nodes of label [...] are offline"

I got a Photon OS server running, where I'd like to create and use containers as jenkins nodes (Docker plugin). During the job I get "All nodes of label [...] are offline" although multiple containers are created and later deleted. Since the docker…
smelm
  • 111
  • 5
1
vote
0 answers

docker-compose up exited with code 1 because of few InnoDB errors

I have cat orthomcl/Dockerfile: FROM debian:stretch-backports RUN apt-get update && apt-get install -y --no-install-recommends \ wget \ cpanminus \ build-essential \ default-libmysqlclient-dev \ python \ …
user977828
  • 225
  • 1
  • 6
  • 15
1
vote
1 answer

docker-compose up caused orthomcl_orthomcl_1 exited with code 0

I have cat orthomcl/Dockerfile: FROM debian:stretch-backports RUN apt-get update && apt-get install -y --no-install-recommends \ wget \ cpanminus \ build-essential \ libmariadbclient-dev \ python \ …
user977828
  • 225
  • 1
  • 6
  • 15
1
vote
0 answers

Building Dockerfile on "RUN apt-get ..." step gives me "jailing process inside rootfs caused 'permission denied': unknown"

I installed docker using snap on Ubuntu 19.04 and ensured that my user has access to the docker group. My Dockerfile is as follows: FROM ubuntu:18.04 RUN apt-get update I issue this command: docker build . And I get this output: Sending build…
FriendlyDev
  • 135
  • 5
1
vote
0 answers

Selenium WebDriverException: Message: address not available, when running Django test on jenkins server

I have running docker an AWS EC2 instance. Using docker-compose, I have jenkins running in one container. I have a jenkins pipeline which checks out my repo ( which is a Djano application, with a docker file ). My pipeline then builds the docker…
ched
  • 11
  • 2
1
vote
1 answer

Docker labels for ECS containers

I'm new to using labels with Docker containers, but I noticed that the labels I add to my images during build are ignored by ECS when I deploy a task definition. I can see that I can add the labels to the container as part of the task definition,…
mhvelplund
  • 97
  • 2
  • 12
1
vote
0 answers

Why does btrfs filesystem df return larger number than du?

I have a Linux machine (Ubuntu with Btrfs) which runs Docker and 4 cointainers. Docker images # docker images REPOSITORY TAG IMAGE ID CREATED SIZE alpine 3.8 …
Alojzij Blatnik
  • 123
  • 1
  • 9
1
vote
1 answer

what does docker version name means?

Following docker document When I get the To install a specific version of Docker CE, list the available versions in the repo step yum list docker-ce --showduplicates | sort -r * updates: mirrors.aliyun.com Loading mirror speeds from cached…
Shihe Zhang
  • 143
  • 1
  • 7
1
vote
1 answer

What is the major difference between AWS Elastic Beanstalk & Docker. Which one should i use?

I just started learning about Amazon elastic beanstalk, and it seems very good and useful. However, it seems like Docker can be used for the same thing. AWS EB let's you create environments in Node.js, PHP, Java and start an app in few steps very…
samceena
  • 161
  • 1
  • 1
  • 3
1
vote
1 answer

redirect to a different localhost based on url nginx

I'm using docker to create multiple containers and I'm trying to redirect calls coming to my website to the relevant container. for example, if someone tries to go to http://wavenapp.com/bot/test1/webhook then his request will be redirected to…
1
vote
0 answers

Jenkins, http management from docker

I have problems with jenkins-cli and I think I need help for debugging. My Jenkins installation runs from Docker, and I want to interact with it from within a different docker instance (so there's a jenkins/jenkins:lts docker instance and a…
banyek
  • 399
  • 1
  • 10