Questions tagged [linux-containers]

Linux containers (LXC) is an operating system–level virtualization method for running multiple isolated Linux systems (containers) on a single control host.

Linux containers (LXC) is an operating system–level virtualization method for running multiple isolated Linux systems (containers) on a single control host.

https://linuxcontainers.org/

224 questions
0
votes
2 answers

Migrating a Virtual machine running customized Guest OS to containers

I am fairly new to containers. Is it possible to move a VM running a customized linux OS to a container? From what I have understood so far. The containers share the OS among them as compared to VM which has its own Guest OS.
Karthick
  • 1,010
  • 1
  • 8
  • 24
0
votes
1 answer

How to activate linux-containers for docker in AppVeyor?

I want to use AppVeyor for the CI, and I want to use Linux containers for the docker. I use Visual Studio 2017 image. When I ran docker-switch-linux I get the following error: Unable to start: The running command stopped because the preference…
Saeed Ganji
  • 197
  • 17
0
votes
0 answers

How to get nuget for linux based docker container

I am trying to dockerrize the .NET core application which is having internal dependency with NuGet to fetch some libraries/dependencies. I am using Linux based docker containers as AKS do not support windows based nodes (Please correct me if I am…
Sapna Maid
  • 89
  • 11
0
votes
0 answers

How to run a simple Hello World node js application in Ubuntu LXC container?

I have a nodejs application - express app. My use case here is I need to run the node js application inside a LXC container in ubuntu. I need to understand how a simple nodejs app works in a container so that I can move onto porting my express…
Shaik Syed Ali
  • 3,359
  • 3
  • 17
  • 22
0
votes
1 answer

How to install node modules (express, typescript, ws etc) inside Ubuntu LXC container?

I have a typescript application which is in turn a express web application and uses ws module for socket operations. My use case here is, I have to run the typescript application inside a LXC container in Ubuntu. I have created a container using…
Shaik Syed Ali
  • 3,359
  • 3
  • 17
  • 22
0
votes
0 answers

How do I use devicemapper in a Linux container

I would like to run some software (paradux) that uses devicemapper inside a Linux container started with systemd-nspawn. How do I get devicemapper (specifically via cryptsetup and LUKS) to work in the container?
Johannes Ernst
  • 3,072
  • 3
  • 42
  • 56
0
votes
1 answer

ASPNETCORE containers loading on linux server, but "image operating system "windows" cannot be used on this platform"

Another day, another docker problem. I am currently working on an aspnetcore app in a container that I want to run on an Ubuntu 18.04. Here is my Dockerfile: FROM microsoft/aspnetcore:2.0 AS base WORKDIR /app EXPOSE 80 FROM…
shrimpy
  • 653
  • 3
  • 11
  • 27
0
votes
2 answers

npm start to bind to linux container ip address

I need to be able to bind my linux container 'npm start' address to 10.XX.XX.XX so I may be able to view from my host box. Both host and container are Ubuntu. Host is Ubuntu 18 and container is 16 Xenial. I am currently following a netlify-cms…
earth2jason
  • 715
  • 1
  • 9
  • 20
0
votes
1 answer

Assign container port to local port seems not working correctly?

Recently, i've created a container for my project, and also tried to assign its port (9002, specified in Dockerfile) to host port by adding: -p 9003:9002 (i attached it to port 9003 of the host ) in "Docker run" when i generated new container. Then…
hoango27
  • 89
  • 3
  • 11
0
votes
1 answer

How do i make my docker container accessible to machines other than my host machines

I am running docker on my windows 10 machine , i have docker for windows installed and when i run selenium hub image with exposes ports it works fine , I can view the selenium hub console with localhost:4444 (4444 is the exposed port) . Now i want…
0
votes
2 answers

How to make a container comunicate with non-containerized application (Ex database)

I'm trying to understand how a containerized application can communicate with a non-containerized application, for example a non-containerized database that could be on the same host or not. I would like to know which command or setting is needed to…
0
votes
1 answer

Cannot forward ports when running Linux container on Windows10 as a host

I'm new using Docker. I have been trying to deploy a Linux container (with Windows as a host) with a Google Cloud image inside using Docker. I'm able to do everything well, at the end the server is running perfectly, but when I want to check the…
0
votes
0 answers

Deploying WSO2 in docker I'm unable to get to the Analytics Carbon page

Deployed via the docker hub instructions to VMWare containers. https://github.com/wso2/docker-ei/tree/master/dockerfiles/alpine When accessing https://dockerhost:9444/carbon I get the following error: Problem accessing: /carbon. Reason: Not Found I…
0
votes
2 answers

How Scale increases by adding new container in host?

Hie, I have recently come across virtualization called containers. this is regarding auto-scaling. I have read that when current container is out of resources then it will add a new container to the host. How does adding new container saves in…
0
votes
2 answers

What are the dependencies for running containers on a system (linux)?

I am new to the world containers, docker, kubernetes and I am investigating requirements for implementing a my middleware distributed project. I took some key container courses with Docker and Kubernetes. But I would like to ask for those who have…
Thomas Marques
  • 981
  • 2
  • 7
  • 16