跳到主要內容

發表文章

目前顯示的是有「nginx」標籤的文章

DOCKER-PHP-NGINX-ZENDFRAMWORD3.0

筆記文 http://blog.chengweichen.com/2015/05/docker-nginx-php-fpm-52-mysql.html Docker機器概述 遠端建立DOCKER ENG https://docs.docker.com/machine/overview/ 不可以作用在虛擬機上。 最後會發生CPU虛擬化設定的問題 Install Docker for ubuntu https://docs.docker.com/engine/installation/linux/ubuntu/ Docker Compose 可以併行多容器的管理工具 https://docs.docker.com/compose/install/ http://docker.readbook.tw/docker/index.html 建立系統docker https://github.com/mikechernev/dockerised-php docker-compose.yml version: '2' services:     web:         image: nginx:latest         ports:             - "8080:80"         volumes:             - ~/cca:/var/www/html/cca             - ~/cca/site.conf:/etc/nginx/conf.d/default.conf         networks:             - code-network         tt...

docker+Nginx 安裝與配置

工作紀錄筆記 1. ubuntu 虛擬機 2. 安裝docker 安裝配置參考 https://docs.docker.com/engine/installation/linux/ubuntu/ 這邊要注意將這裡加到apt的 sourse list的清單中。 之後apt-get update 就可以安裝了。 後續應該不會有卡住了。 3.Nginx 可以透過鏡像直接安裝 配置參考 https://www.digitalocean.com/community/tutorials/how-to-run-nginx-in-a-docker-container-on-ubuntu-14-04 太詳細了所以沒有甚麼好補充的...