From 6a795aff790d6a812f0e3c6b85036e32b645f713 Mon Sep 17 00:00:00 2001 From: Amir Pourmand Date: Wed, 23 Oct 2024 13:50:41 +0330 Subject: [PATCH] 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. --- docker-compose.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docker-compose.yml b/docker-compose.yml index a9bc8b8..961cf0c 100644 --- a/docker-compose.yml +++ b/docker-compose.yml @@ -1,7 +1,7 @@ # this file uses prebuilt image in dockerhub services: jekyll: - image: amirpourmand/al-folio:latest + image: amirpourmand/al-folio:v0.12.0 build: . ports: - 8080:8080