linux-containers Questions
11
Solved
I have followed the instruction in https://registry.hub.docker.com/_/mysql/ to pull an image and running a container in which it runs a MySQL server.
The container is running in the background and ...
Augsburg asked 8/2, 2015 at 1:11
2
I create a docker file as below:
FROM mcr.microsoft.com/dotnet/core/aspnet:2.2 AS base
RUN apt-get update \
&& apt-get install -y --allow-unauthenticated \
libc6-dev \
libgdiplus \
libx...
Jessen asked 25/6, 2020 at 15:0
20
I've been using this Docker-image tutum/wordpress to demonstrate a Wordpress website. Recently I found out that the image uses volumes for the MySQL-data.
So the problem is this: If I want to back...
Leeds asked 13/10, 2014 at 1:9
3
Solved
What's the big difference between a container running on top of docker and a self contained Java program running on top of the JVM?
I assume both are running directly on a physical linux server wi...
Moulin asked 19/7, 2015 at 22:30
5
Solved
What I want: dockerize a Node.js web app (I am on Windows)
Windows container
docker-compose up gets me this error:
Service 'webapp' failed to build: no matching manifest for windows/amd64 in the...
Ayrshire asked 4/4, 2018 at 19:44
15
Solved
I'm not sure if I've misunderstood something here, but it seems like it's only possible to set port mappings by creating a new container from an image. Is there a way to assign a port mapping to an...
Tights asked 12/10, 2013 at 14:46
14
Solved
I'm trying to change repository name of the image:
REPOSITORY TAG IMAGE ID CREATED VIRTUAL SIZE
server latest d583c3ac45fd 26 minutes ago 685.5 MB
Hence I want to change the name server to somet...
Lilylivered asked 8/8, 2014 at 19:48
14
Solved
Normally, docker containers are run using the user root. I'd like to use a different user, which is no problem using docker's USER directive. But this user should be able to use sudo inside the con...
Barbicel asked 15/9, 2014 at 10:7
6
I tried adding to the PATH in the files ~/.profile and /etc/profile as follow.
PATH = $PATH:/required/path
However, it does not work. Then I tried with adding the line show, which did not work e...
Eaddy asked 25/2, 2015 at 15:12
5
Solved
I don't want to run anything in a docker container as root.
And I want minimalistic images.
I can run my compiled Go app in the scratch-image without a problem.
But when I don't want it to run as ...
Corruptible asked 25/10, 2014 at 10:48
2
Solved
On a server running containers with Podman I just realised, there are many containers with "Exited" status and wanted to remove all of them in one go.
How can I do it with Podman?
Danner asked 14/5, 2021 at 3:49
1
Solved
I've created a simple K8s deployment with the kubectl create command
kubectl create -f k8-deployment.yaml
My k8-deployment.yaml file looks like this
apiVersion: apps/v1
kind: Deployment
metadata:
...
Jeffiejeffrey asked 13/5, 2021 at 21:4
2
Solved
What is the correct docker run ... command to run jenkins container.
What are the required ports?
How to mount volume D:\jenkins folder to jenkins job configuration path?
I'm using linux contai...
Palter asked 20/10, 2016 at 3:21
2
Solved
I am trying to generate a Docker Image without using Visual Studio. I am in the project folder and I execute from windows 10 admin command line docker build . I can't figure out how to make this wo...
Depersonalization asked 29/1, 2021 at 18:54
4
Solved
I work on an application with different processes and I'm asked to contain those processes for achieving more isolation.
The problem is that the processes share memory with a single "hypervisor" p...
Nieman asked 27/5, 2014 at 12:14
2
Solved
I'm using Docker Desktop for Windows and I want to find where the volumes are created by Docker, in a Linux container?
Has anyone been able to perform the volume mounting that I am trying to achiev...
Promulgate asked 29/3, 2020 at 15:17
1
Solved
I've been digging around the net and Stackoverflow and I've had some trouble solving a problem I have.
I am trying to standup my ASP.NET Core application into Docker. I have the following cert, le...
Fanny asked 6/12, 2019 at 0:24
2
I have installed docker. When its running in windows container it works fine. But if i switch to Linux container getting below error.
Os: Windows 10
Docker Desktop: 2.2.0.3
Error:
Docker.Core.Ba...
Erbe asked 20/2, 2020 at 5:39
5
Solved
I'm doing some initial tests with docker. At moment i have my images and I can put some containers running, with:
docker ps
I do docker attach container_id and start apache2 service.
Then from ...
Ching asked 4/8, 2013 at 21:50
0
I am quite confused with the strategy of providing the Linux container support on Windows. I have Heard alot about LCOW and WSL to run linux container but I am still not sure why they are not provi...
Tensiometer asked 3/10, 2019 at 8:43
5
Solved
I use docker on OSX with boot2docker.
I want to get an Ssh connection from my terminal into a running container.
But I can't do this :(
I think it's because Docker is running in a virtual machin...
Ate asked 11/4, 2014 at 13:55
4
Solved
Is it possible to backup a running Docker container? Is the export command suitable for doing that?
Heliograph asked 29/3, 2013 at 9:54
7
Solved
PROBLEM: Any build, with a Dockerfile depending on centos, ubuntu or debian fails to build.
ENVIRONMENT: I have a Mac OS X, running VMWare with a guest Ubuntu 14.04, running Docker:
mdesales@ubun...
Cullum asked 5/8, 2014 at 3:2
0
I have built an image with simple ASP .NET Core 2.0 App in Alpine Docker. When I run the Linux container on Windows Power-Shell, everything is fine. But if I run the Linux container on a Linux Serv...
Herman asked 20/3, 2018 at 16:29
1
Solved
How do I propagate a mount created in a child namespace to the parent?
Details
I am trying to create a tool leveraging overlayfs for allowing writes over a read only directory. The tricky bit is ...
Weekend asked 8/1, 2018 at 19:10
1 Next >
© 2022 - 2024 — McMap. All rights reserved.