docker

docker

2104
Views

Is it still really slow doing live mount of the source code directory in e.g. docker for mac?

Questionsaaron replied • 4 users followed • 3 replies • 2104 views • 2019-03-21 19:44 • data from similar tags

1275
Views

how to clear docker unnecessary resources to give more space for memories, like unnecessary containers, unnecessary images, volumes,etc.

OthersBobby posted the article • 0 comments • 1275 views • 2018-12-13 19:10 • data from similar tags

Check the docker used resources.
 
 docker container ls:Default list containers,-a Show all containers (default shows just running)
docker image ls:Show all images (default hides intermediate images)
docker volume ls:Show all volumes.
docker network ls:Show network.
docker info:Display system-wide information.
 
 
$ docker system prune
 
 
 
if you wanna remove specific volumns
 
$ docker system prune --all --force --volumns

 
  view all
  • Check the docker used resources.

 
 docker container ls:Default list containers,-a Show all containers (default shows just running)
docker image ls:Show all images (default hides intermediate images)
docker volume ls:Show all volumes.
docker network ls:Show network.
docker info:Display system-wide information.
 
 
$ docker system prune

 
 
 
if you wanna remove specific volumns
 
$ docker system prune --all --force --volumns


 
 
1831
Views

I'd like to scale and I'd advice where to look for further learning material and best practices how to do this with docker.

Reply

Questionshribar posted a question • 1 users followed • 0 replies • 1831 views • 2018-11-21 23:18 • data from similar tags

2109
Views

I have 2,000 Excel files that I need to access from one of my containers.

Reply

Questionsbriancaffey posted a question • 1 users followed • 0 replies • 2109 views • 2018-11-21 23:14 • data from similar tags

2256
Views

I want to use phpstorm on my local machine to work via sftp on the vps (changing files in the container volume.)

Reply

QuestionsMilanRgm posted a question • 1 users followed • 0 replies • 2256 views • 2018-11-21 23:08 • data from similar tags

2101
Views

has anyone here ever ran sonatype/nexus on a docker container?

Reply

QuestionsBenny posted a question • 1 users followed • 0 replies • 2101 views • 2018-11-13 22:29 • data from similar tags

2032
Views

does anyone know what I need to do to re-generate whatever id its using there?

Reply

QuestionsDmitry posted a question • 1 users followed • 0 replies • 2032 views • 2018-11-13 22:28 • data from similar tags

1980
Views

Hello, I have a question about multistage builds?

Reply

QuestionsJamie posted a question • 1 users followed • 0 replies • 1980 views • 2018-10-20 01:40 • data from similar tags

2042
Views

How can we access docker cli from inside container ?

QuestionsRoman replied • 2 users followed • 1 replies • 2042 views • 2018-10-20 01:38 • data from similar tags

1971
Views

my network performance in a docker container is extremly slow 20 KB / s .Anyone know if this is normal ?

QuestionsRoman replied • 2 users followed • 1 replies • 1971 views • 2018-10-20 01:36 • data from similar tags

1907
Views

I have built a docker image which generates some data which I would like to transfer to host.

QuestionsCaleb replied • 2 users followed • 1 replies • 1907 views • 2018-10-20 01:33 • data from similar tags

2339
Views

I am building an image with WordPress and own templates. Unfortunately this takes long time, at least 5 minutes most of the time.

QuestionsRoman replied • 4 users followed • 3 replies • 2339 views • 2018-10-20 01:29 • data from similar tags

1876
Views

if I switch NODE_ENVs and want to use a different database like mydb_production, obviously TypeORM complains

QuestionsBobby replied • 2 users followed • 1 replies • 1876 views • 2018-10-20 00:55 • data from similar tags

2247
Views

Failed to start Docker Application Container Engine on centos7

Questionshans replied • 2 users followed • 1 replies • 2247 views • 2018-09-28 03:02 • data from similar tags

2375
Views

How to use docker start EOSIO enviroment

Reply

Othersdebris posted a question • 1 users followed • 0 replies • 2375 views • 2018-09-21 22:33 • data from similar tags

3053
Views

How to uninstall docker on centos7

Othersgridnic posted the article • 0 comments • 3053 views • 2018-09-21 21:28 • data from similar tags

1. search and find out where you installed docker[root@localhost ~]# yum list installed|grep docker 

docker.x86_64 2:1.12.6-16.el7.centos @extras 

docker-client.x86_64 2:1.12.6-16.el7.centos @extras 

docker-common.x86_64 2:1.12.6-16.el7.centos @extra

2. Delete all the listed files[root@localhost ~]#yum –y remove docker.x86_64 

[root@localhost ~]#yum –y remove docker-client.x86_64 

[root@localhost ~]#yum –y remove docker-common.x86_64


 3.Delete docker image[root@localhost ~]# rm -rf /var/lib/docker
 
 4. check out  whether deleted or not[root@localhost ~]# yum list installed|grep docker If you cannot find any lists like step 1, that's mean you successfully uninstall  docker.
  view all
1. search and find out where you installed docker
[root@localhost ~]# yum list installed|grep docker 

docker.x86_64 2:1.12.6-16.el7.centos @extras 

docker-client.x86_64 2:1.12.6-16.el7.centos @extras 

docker-common.x86_64 2:1.12.6-16.el7.centos @extra

2. Delete all the listed files
[root@localhost ~]#yum –y remove docker.x86_64 

[root@localhost ~]#yum –y remove docker-client.x86_64 

[root@localhost ~]#yum –y remove docker-common.x86_64


 3.Delete docker image
[root@localhost ~]# rm -rf /var/lib/docker 

 
 4. check out  whether deleted or not
[root@localhost ~]# yum list installed|grep docker 
If you cannot find any lists like step 1, that's mean you successfully uninstall  docker.
 
1352
Views

How to use docker install mysql, redis, activemq and rabbitmq.

OthersAamir posted the article • 0 comments • 1352 views • 2018-09-21 15:35 • data from similar tags

Every time ,after I installed docker , I have to install other files,today I made a record .
 
1. Mysql
 docker pull mysql:5.7
docker volume create v1
docker run -d -it --name=mysql -p 3306:3306 -e MYSQL_ROOT_PASSWORD=123456 -v v1:/var/lib/mysql --privileged mysql:5.7


2. redis
 docker pull redis
docker run -d -it --name=redis -p 3306:3306 redis
3. activemq
 docker run -d -it --name=activemq -p 61616:61616 -p 8161:8161 webcenter/activemq
4. rabbitmq
 docker run -d -it --name=rabbitmq -p 5672:5672 -p 15672:15672 rabbitmq:3.7.3-management
  view all
Every time ,after I installed docker , I have to install other files,today I made a record .
 
1. Mysql
 
docker pull mysql:5.7
docker volume create v1
docker run -d -it --name=mysql -p 3306:3306 -e MYSQL_ROOT_PASSWORD=123456 -v v1:/var/lib/mysql --privileged mysql:5.7


2. redis
 
docker pull redis
docker run -d -it --name=redis -p 3306:3306 redis

3. activemq
 
docker run -d -it --name=activemq -p 61616:61616 -p 8161:8161 webcenter/activemq

4. rabbitmq
 
docker run -d -it --name=rabbitmq -p 5672:5672 -p 15672:15672 rabbitmq:3.7.3-management

 
2104
Views

Is it still really slow doing live mount of the source code directory in e.g. docker for mac?

Reply

Questionsaaron replied • 4 users followed • 3 replies • 2104 views • 2019-03-21 19:44 • data from similar tags

1831
Views

I'd like to scale and I'd advice where to look for further learning material and best practices how to do this with docker.

Reply

Questionshribar posted a question • 1 users followed • 0 replies • 1831 views • 2018-11-21 23:18 • data from similar tags

2109
Views

I have 2,000 Excel files that I need to access from one of my containers.

Reply

Questionsbriancaffey posted a question • 1 users followed • 0 replies • 2109 views • 2018-11-21 23:14 • data from similar tags

2256
Views

I want to use phpstorm on my local machine to work via sftp on the vps (changing files in the container volume.)

Reply

QuestionsMilanRgm posted a question • 1 users followed • 0 replies • 2256 views • 2018-11-21 23:08 • data from similar tags

2101
Views

has anyone here ever ran sonatype/nexus on a docker container?

Reply

QuestionsBenny posted a question • 1 users followed • 0 replies • 2101 views • 2018-11-13 22:29 • data from similar tags

2032
Views

does anyone know what I need to do to re-generate whatever id its using there?

Reply

QuestionsDmitry posted a question • 1 users followed • 0 replies • 2032 views • 2018-11-13 22:28 • data from similar tags

1980
Views

Hello, I have a question about multistage builds?

Reply

QuestionsJamie posted a question • 1 users followed • 0 replies • 1980 views • 2018-10-20 01:40 • data from similar tags

2042
Views

How can we access docker cli from inside container ?

Reply

QuestionsRoman replied • 2 users followed • 1 replies • 2042 views • 2018-10-20 01:38 • data from similar tags

1971
Views

my network performance in a docker container is extremly slow 20 KB / s .Anyone know if this is normal ?

Reply

QuestionsRoman replied • 2 users followed • 1 replies • 1971 views • 2018-10-20 01:36 • data from similar tags

1907
Views

I have built a docker image which generates some data which I would like to transfer to host.

Reply

QuestionsCaleb replied • 2 users followed • 1 replies • 1907 views • 2018-10-20 01:33 • data from similar tags

2339
Views

I am building an image with WordPress and own templates. Unfortunately this takes long time, at least 5 minutes most of the time.

Reply

QuestionsRoman replied • 4 users followed • 3 replies • 2339 views • 2018-10-20 01:29 • data from similar tags

1876
Views

if I switch NODE_ENVs and want to use a different database like mydb_production, obviously TypeORM complains

Reply

QuestionsBobby replied • 2 users followed • 1 replies • 1876 views • 2018-10-20 00:55 • data from similar tags

2247
Views

Failed to start Docker Application Container Engine on centos7

Reply

Questionshans replied • 2 users followed • 1 replies • 2247 views • 2018-09-28 03:02 • data from similar tags

2375
Views

How to use docker start EOSIO enviroment

Reply

Othersdebris posted a question • 1 users followed • 0 replies • 2375 views • 2018-09-21 22:33 • data from similar tags

1275
Views

how to clear docker unnecessary resources to give more space for memories, like unnecessary containers, unnecessary images, volumes,etc.

OthersBobby posted the article • 0 comments • 1275 views • 2018-12-13 19:10 • data from similar tags

Check the docker used resources.
 
 docker container ls:Default list containers,-a Show all containers (default shows just running)
docker image ls:Show all images (default hides intermediate images)
docker volume ls:Show all volumes.
docker network ls:Show network.
docker info:Display system-wide information.
 
 
$ docker system prune
 
 
 
if you wanna remove specific volumns
 
$ docker system prune --all --force --volumns

 
  view all
  • Check the docker used resources.

 
 docker container ls:Default list containers,-a Show all containers (default shows just running)
docker image ls:Show all images (default hides intermediate images)
docker volume ls:Show all volumes.
docker network ls:Show network.
docker info:Display system-wide information.
 
 
$ docker system prune

 
 
 
if you wanna remove specific volumns
 
$ docker system prune --all --force --volumns


 
 
3053
Views

How to uninstall docker on centos7

Othersgridnic posted the article • 0 comments • 3053 views • 2018-09-21 21:28 • data from similar tags

1. search and find out where you installed docker[root@localhost ~]# yum list installed|grep docker 

docker.x86_64 2:1.12.6-16.el7.centos @extras 

docker-client.x86_64 2:1.12.6-16.el7.centos @extras 

docker-common.x86_64 2:1.12.6-16.el7.centos @extra

2. Delete all the listed files[root@localhost ~]#yum –y remove docker.x86_64 

[root@localhost ~]#yum –y remove docker-client.x86_64 

[root@localhost ~]#yum –y remove docker-common.x86_64


 3.Delete docker image[root@localhost ~]# rm -rf /var/lib/docker
 
 4. check out  whether deleted or not[root@localhost ~]# yum list installed|grep docker If you cannot find any lists like step 1, that's mean you successfully uninstall  docker.
  view all
1. search and find out where you installed docker
[root@localhost ~]# yum list installed|grep docker 

docker.x86_64 2:1.12.6-16.el7.centos @extras 

docker-client.x86_64 2:1.12.6-16.el7.centos @extras 

docker-common.x86_64 2:1.12.6-16.el7.centos @extra

2. Delete all the listed files
[root@localhost ~]#yum –y remove docker.x86_64 

[root@localhost ~]#yum –y remove docker-client.x86_64 

[root@localhost ~]#yum –y remove docker-common.x86_64


 3.Delete docker image
[root@localhost ~]# rm -rf /var/lib/docker 

 
 4. check out  whether deleted or not
[root@localhost ~]# yum list installed|grep docker 
If you cannot find any lists like step 1, that's mean you successfully uninstall  docker.
 
1352
Views

How to use docker install mysql, redis, activemq and rabbitmq.

OthersAamir posted the article • 0 comments • 1352 views • 2018-09-21 15:35 • data from similar tags

Every time ,after I installed docker , I have to install other files,today I made a record .
 
1. Mysql
 docker pull mysql:5.7
docker volume create v1
docker run -d -it --name=mysql -p 3306:3306 -e MYSQL_ROOT_PASSWORD=123456 -v v1:/var/lib/mysql --privileged mysql:5.7


2. redis
 docker pull redis
docker run -d -it --name=redis -p 3306:3306 redis
3. activemq
 docker run -d -it --name=activemq -p 61616:61616 -p 8161:8161 webcenter/activemq
4. rabbitmq
 docker run -d -it --name=rabbitmq -p 5672:5672 -p 15672:15672 rabbitmq:3.7.3-management
  view all
Every time ,after I installed docker , I have to install other files,today I made a record .
 
1. Mysql
 
docker pull mysql:5.7
docker volume create v1
docker run -d -it --name=mysql -p 3306:3306 -e MYSQL_ROOT_PASSWORD=123456 -v v1:/var/lib/mysql --privileged mysql:5.7


2. redis
 
docker pull redis
docker run -d -it --name=redis -p 3306:3306 redis

3. activemq
 
docker run -d -it --name=activemq -p 61616:61616 -p 8161:8161 webcenter/activemq

4. rabbitmq
 
docker run -d -it --name=rabbitmq -p 5672:5672 -p 15672:15672 rabbitmq:3.7.3-management