Skip to content
Advertisement

Tag: docker

How to deploy .net core in Kubernetes?

Recently I started study Kubernetes. And I want to deploy .net core in Kubernetes. How to deploy .net core in Kubernetes ? Maybe there is a simple example ? Answer There are lots of resources on the web for the specific mechanics that I will add at the bottom. This is a very broad question and probably not a correct

How do I install a SQL Server Java driver into a linux docker container?

The docker image definition below does not contain according to the documentation a SQL Server driver. How can I install it? Documentation: https://github.com/camunda/docker-camunda-bpm-platform Docker File Answer I was able to make it work after several days. Steps Download JDBC Driver from Microsoft Site, Version 7.2, it will include 2 JAR FILES Uncompress, and copy the file into your docker folder

docker compose: Error while loading shared libraries: libz.so.1: failed to map segment from shared object: Operation not permitted

After installing docker and docker-compose on: When executing: It returns: Error while loading shared libraries: libz.so.1: failed to map segment from shared object: Operation not permitted It should return: Installation from docker-compose is this Answer Got it solved by re-mounting the /tmp to give the volume permission to execute (it was accessible with read-only). So this solved:

Multiple ip on same interface in Docker container

Is that possible to have multiple IPs on eth0 in a Docker container? I would like having 5 IPs on eth0 in a Docker container interface. I am using “ip” utility. Executing ip address add 172.20.0.200/16 dev eth0 in the container give “Operation not permited. I tried manually log to the container as root user using “sudo exec -u root

How to deploy web console by docker, docker run -d -p 80:80 -v :/var/lib/mongodb –name, What is host absolute path?

I’m trying to deploy Apache Ignite Web console on Linux(CentOS 7), but to run docker, i have to set host_absolute_path of MongoDB, How to handle it? <host_absolute_path> is a path on your host machine where MongoDB will create database files. This folder should be created before docker run. Go to Docker->Preferences->File Sharing and create the directory there or use the

Advertisement