diff options
| author | nsfisis <nsfisis@gmail.com> | 2022-10-26 19:21:31 +0900 |
|---|---|---|
| committer | nsfisis <nsfisis@gmail.com> | 2022-10-26 19:21:31 +0900 |
| commit | dff1aa8f687c52412f66277d32f7fd786cce6fa0 (patch) | |
| tree | e143ba4fbbd56c40c44686551e82a3127099d202 /docker-compose.yml | |
| parent | 7a2c33d6042bbd285c9bfa19f2c4c262bca95fcc (diff) | |
| download | blog.nsfisis.dev-dff1aa8f687c52412f66277d32f7fd786cce6fa0.tar.gz blog.nsfisis.dev-dff1aa8f687c52412f66277d32f7fd786cce6fa0.tar.zst blog.nsfisis.dev-dff1aa8f687c52412f66277d32f7fd786cce6fa0.zip | |
add docker conf
Diffstat (limited to 'docker-compose.yml')
| -rw-r--r-- | docker-compose.yml | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/docker-compose.yml b/docker-compose.yml new file mode 100644 index 0000000..7151b77 --- /dev/null +++ b/docker-compose.yml @@ -0,0 +1,18 @@ +version: '3' + +services: + blog_nsfisis_nginx: + image: nginx + volumes: + - ./nginx.conf:/etc/nginx/conf.d/default.conf + - ./docs:/public + expose: + - 80 + environment: + TZ: Asia/Tokyo + restart: always + +networks: + default: + external: + name: nsfisis_dev_shared |
