pages/docker-compose.yml
Amir Pourmand 6a795aff79
Add Image Version to Docker-Compose to pull the relevant image (#2740)
This is to address 
- #2733 

Since a lot of times, the only problem is that docker image is not
consistent with the build. We have to somehow incorporate image version
into repository.

I don't insist to provide it this way. Maybe there are other automatic
ways which are better.

We can also calculate the relevant tag from git.
2024-10-23 13:50:41 +03:30

13 lines
251 B
YAML

# this file uses prebuilt image in dockerhub
services:
jekyll:
image: amirpourmand/al-folio:v0.12.0
build: .
ports:
- 8080:8080
- 35729:35729
volumes:
- .:/srv/jekyll
environment:
- JEKYLL_ENV=development