LoginSignup
0
0

More than 3 years have passed since last update.

docker

Last updated at Posted at 2020-10-11

compose構成
https://note.com/koushikagawa/n/nc63a8ae2e810
https://qiita.com/nemui_/items/f911be7ffa4f29293fd5
https://carametal.hatenablog.com/entry/2020/01/15/225637

version: '3' # docker-composeのバージョンを指定
services:
nginx: # サービス名
container_name: "nginx" # コンテナ名
image: nginx:1.14 # image名を指定。ここではDockerHub上のnginxイメージを指定している。
links: # ここで指定したサービス名とのリンクを作成する
- php # サービス名”php”と”nginx”を関連付ける
php:
container_name: "php"
image: php:7.2-apache
ports:
- '80:80'
volumes:
- ./html:/var/www/html

同期
http://mashiroyuya.hatenablog.com/entry/dockerphp

僕たちのさくら
https://knowledge.sakura.ad.jp/13265/

0
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
0