diff options
| author | nsfisis <nsfisis@gmail.com> | 2024-08-15 03:30:07 +0900 |
|---|---|---|
| committer | nsfisis <nsfisis@gmail.com> | 2024-08-15 03:30:07 +0900 |
| commit | 5f8709982bd83ab2abba68c00b33f6c1494d5d0b (patch) | |
| tree | bbcd1f76b98f2ec504f25447cf17e74004eccf2b /vhosts/blog/compose.yaml | |
| parent | c75572765f5d2952a2c4f84160502a10497e9ead (diff) | |
| download | nsfisis.dev-5f8709982bd83ab2abba68c00b33f6c1494d5d0b.tar.gz nsfisis.dev-5f8709982bd83ab2abba68c00b33f6c1494d5d0b.tar.zst nsfisis.dev-5f8709982bd83ab2abba68c00b33f6c1494d5d0b.zip | |
feat(deploy): migrate to docker compose v2
Diffstat (limited to 'vhosts/blog/compose.yaml')
| -rw-r--r-- | vhosts/blog/compose.yaml | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/vhosts/blog/compose.yaml b/vhosts/blog/compose.yaml new file mode 100644 index 00000000..d8a9c85a --- /dev/null +++ b/vhosts/blog/compose.yaml @@ -0,0 +1,11 @@ +services: + nginx: + image: nginx + volumes: + - ./nginx.conf:/etc/nginx/conf.d/default.conf + - ./public:/public + ports: + - '127.0.0.1:8001:8001' + environment: + TZ: Asia/Tokyo + restart: always |
