Browse Source

bump dottie version

Christian Winther 1 year ago
parent
commit
b08bb3669d
2 changed files with 7 additions and 2 deletions
  1. 1 1
      Dockerfile
  2. 6 1
      docker/shell

+ 1 - 1
Dockerfile

@@ -21,7 +21,7 @@ ARG FOREGO_VERSION="0.17.2"
 ARG GOMPLATE_VERSION="v3.11.6"
 
 # See: https://github.com/jippi/dottie
-ARG DOTTIE_VERSION="v0.9.3"
+ARG DOTTIE_VERSION="v0.9.5"
 
 ###
 # PHP base configuration

+ 6 - 1
docker/shell

@@ -9,4 +9,9 @@ if [[ $# -ge 1 ]]; then
     command=("$@")
 fi
 
-exec docker compose exec --user "${user}" "${service}" "${command[@]}"
+exec docker compose exec \
+    --user "${user}" \
+    --env TERM \
+    --env COLORTERM \
+    "${service}" \
+    "${command[@]}"