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.
13 lines
251 B
YAML
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
|