
Docker
文章平均质量分 75
yexianyi
Software Architect @ Siemens
Email: yexianyi@hotmail.com
Linkedin: http://cn.linkedin.com/in/yexianyi/
Github: https://github.com/yexianyi/
展开
-
Docker: How to config Http Proxy for accessing the Internet
Issue:When you working on docker, you may behind corporate proxy, which means that your docker container cannot access the Internet.Solution:Config Http Proxy for Docker Engine, so that all the ...原创 2020-03-27 17:11:13 · 626 阅读 · 0 评论 -
Docker: How to enable/disable HTTP Proxy in Toolbox
1. docker-machine ssh default2. sudo vi /var/lib/boot2docker/profile3. # replace with your office's proxy environmentexport "HTTP_PROXY=http://PROXY:PORT"export "HTTPS_PROXY=http://PRO原创 2016-11-23 22:07:27 · 1732 阅读 · 0 评论 -
Docker: Failed to get D-Bus connection: No connection to service
Issue:When you execute systemctl command in docker container, you may receive following error.Error:Failed to get D-Bus connection: No connection to service Solution:docker run --p原创 2016-11-23 18:57:09 · 1722 阅读 · 1 评论 -
Cloudera: Start Impala service by cloudera manager in docker quickstart image
How to start Impala service in docker quickstart imagedocker run --hostname=quickstart.cloudera --privileged=true -t -i -p 7180:7180 -p 21050:21050 cloudera/quickstart /usr/bin/docker-quickstart/h原创 2016-12-21 15:52:39 · 1227 阅读 · 0 评论 -
Impala SQL: Unable to LOAD DATA from HDFS path due to WRITE permissions
Issue:While you are using Impala Official docker image "cloudera/quickstart", following exception might be thrown while executing LOAD DATA command to do data migration.Error:[Simba]原创 2017-03-09 11:36:28 · 5082 阅读 · 0 评论 -
Docker: How to configure Docker with devicemapper
Background:Device Mapper is a kernel-based framework that underpins many advancedvolume management technologies on Linux. Docker’sdevicemapper storage driverleverages the thin provisioning and sna原创 2017-03-29 15:39:05 · 2411 阅读 · 0 评论 -
Common-used commands in Docker
1. Start running a image in background modedocker run -it -d :e.g. docker run -it -d ubuntu:16.042. Start running a image and bind a volumedocker run -it -d : -v :e.g. docker run -it原创 2016-09-09 15:59:48 · 502 阅读 · 0 评论 -
How to setup simple Docker Swarm Clustering with visual tools
How to setup simple Docker Swarm Clustering1. Create 3 docker machinesdocker-machine create -d virtualbox --engine-registry-mirror http://8ff28fe8.m.daocloud.io vm1docker-machine create -d virtualbox...原创 2018-04-25 17:34:09 · 258 阅读 · 0 评论