Skip to content

docker-composeでcakephp3の環境作成

License

Notifications You must be signed in to change notification settings

dera0520/docker-nginx-cake3

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

11 Commits
 
 
 
 
 
 
 
 

Repository files navigation

docker-nginx-cake3

dockerをつかって、nginx,cakephp3 の環境を作りました。

証明書の作成

開発用の鍵ファイルを先に作成してください。 やらないと、nginxが立ち上がりません。

cd infla/nginx/key
openssl genrsa 2048 > server.key
openssl req -new -key server.key -subj "/C=JP/ST=Tokyo/L=Chuo-ku/O=RMP Inc./OU=web/CN=localhost" > server.csr
openssl x509 -in server.csr -days 3650 -req -signkey server.key > server.crt

Composer Install

プロジェクトはとってきたままなので、ホストマシンでcomposer install を実行してください。