diff options
author | hyang <hyang@hyang.xyz> | 2023-09-09 17:57:10 -0700 |
---|---|---|
committer | hyang <hyang@hyang.xyz> | 2023-09-09 17:57:10 -0700 |
commit | fa7a38ab912e0011959b2adc244e1d713176dac8 (patch) | |
tree | 41f342060d3a0fa785cb2c03c3ea952e51626cd2 | |
parent | 31829b7e8d4a16829bedb2d51b9b8a56ce6eb567 (diff) |
Add docker compose
-rw-r--r-- | docker-compose.yml | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/docker-compose.yml b/docker-compose.yml new file mode 100644 index 0000000..1330f32 --- /dev/null +++ b/docker-compose.yml @@ -0,0 +1,12 @@ +version: '3' +services: + hugo: + image: klakegg/hugo + command: serve --baseURL hyang.xyz + ports: + - "1313:1313" + volumes: + - ./:/src + environment: + - HUGO_ENV=production + |