Docker
Docker のインストール
https://docs.docker.com/engine/installation/linux/ubuntu/
| $ sudo apt-get install curl linux-image-extra-$(uname -r) linux-image-extra-virtual apt-transport-https ca-certificates software-properties-common | 
Docker Compose のインストール
https://github.com/docker/compose/releases
| $ sudo su | 
Docker Remote API インタフェース
https://github.com/felixgborrego/docker-ui-chrome-app/wiki/linux
| [Unit] | 
| $ sudo systemctl enable docker-tcp.socket | 
My Docker Containers
- docker-mirakurun-chinachu
 https://github.com/Chinachu/docker-mirakurun-chinachu
- docker-portainerdocker-compose.yml version: '2' 
 services:
 portainer:
 restart: always
 image: portainer/portainer
 container_name: portainer
 ports:
 - "9000:9000"
 volumes:
 - /var/run/docker.sock:/var/run/docker.sock
 - ./data:/data
- docker-hexo
 https://github.com/ktkr3d/docker-hexo
- docker-mistiodocker-compose.yml version: '2' 
 services:
 mistio:
 restart: always
 image: mist/mistio
 container_name: mistio
 ports:
 - "8000:8000"
 Comments
