pages/docker-compose.yml
WEI EN TSAI f05fb7bc58
fix live-reloading in docker (#2022)
Fix #2021 : The webpage hosted by docker would not be automatically
reloaded because the port used for live-reloading (port 35729) is not
forwarded.
2023-12-29 02:43:26 +03:30

12 lines
226 B
YAML

version: "3"
# this file uses prebuilt image in dockerhub
services:
jekyll:
image: amirpourmand/al-folio:latest
build: .
ports:
- 8080:8080
- 35729:35729
volumes:
- .:/srv/jekyll