summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorhyang <hyang@hyang.xyz>2023-09-09 17:57:10 -0700
committerhyang <hyang@hyang.xyz>2023-09-09 17:57:10 -0700
commitfa7a38ab912e0011959b2adc244e1d713176dac8 (patch)
tree41f342060d3a0fa785cb2c03c3ea952e51626cd2
parent31829b7e8d4a16829bedb2d51b9b8a56ce6eb567 (diff)
Add docker compose
-rw-r--r--docker-compose.yml12
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
+