Skip to content

Commit 1bfa0a4

Browse files
committed
update to v2.6.4 (parallel/...)
1 parent e897288 commit 1bfa0a4

File tree

3 files changed

+6
-4
lines changed

3 files changed

+6
-4
lines changed

.devcontainer/docker-compose.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
services:
22
app:
3-
image: ghcr.io/ximeraproject/ximeralatex:v2.6.1
4-
# image: ghcr.io/ximeraproject/xake2024:v2.6.1-full
3+
image: ghcr.io/ximeraproject/ximeralatex:v2.6.4
4+
# image: ghcr.io/ximeraproject/xake2024:v2.6.4-full
55
volumes:
66
# This is where VS Code should expect to find your project's source code and the value of "workspaceFolder" in .devcontainer/devcontainer.json
77
- ..:/code:cached

xmScripts/xmlatex

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ fi
4343
#
4444
# default docker image to run; overwrite with 'export XAKE_IMAGE=myxake:0.1'
4545
: "${XAKE_BASE:=ximeralatex}"
46-
: "${XAKE_VERSION:=v2.6.1}"
46+
: "${XAKE_VERSION:=v2.6.4}"
4747
# : "${XAKE_BASE:=xake2019}"
4848
# : "${XAKE_VERSION:=v2.1.1}"
4949
: "${XAKE_CONTAINER:=$XAKE_BASE:$XAKE_VERSION}"
@@ -113,6 +113,8 @@ else
113113
fi
114114

115115
echo "Restarting myself in docker (from image $DOCKER_IMAGE)"
116+
INTERACTIVE="-it" # HACK: always run with -it, to process interrupts with CTRL-C
117+
116118
[[ -n "$DEBUG" ]] && echo \
117119
docker run --env LOCAL_IP --env XIMERA_URL --env XIMERA_NAME --env GPG_KEY --env GPG_KEY_ID --env DEBUG --network host --rm $INTERACTIVE --mount type=bind,source=$MOUNTDIR,target=/code $DOCKER_IMAGE $COMMAND $*
118120
docker run --env LOCAL_IP --env XIMERA_URL --env XIMERA_NAME --env GPG_KEY --env GPG_KEY_ID --env DEBUG --network host --rm $INTERACTIVE --mount type=bind,source=$MOUNTDIR,target=/code $DOCKER_IMAGE $COMMAND $*

xmScripts/xmlatex.bat

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
@echo off
22
set str=%*
33
set "str=%str:\=/%"
4-
set "DOCKER_IMAGE=ghcr.io/ximeraproject/ximeralatex:v2.6.1"
4+
set "DOCKER_IMAGE=ghcr.io/ximeraproject/ximeralatex:v2.6.4"
55
@REM set "DOCKER_IMAGE=ghcr.io/ximeraproject/xake2024:v2.4.2"
66
echo Starting docker %DOCKER_IMAGE% with args %str% in directory %cd%.
77
echo docker run --rm --net="host" --mount type=bind,source=%cd%,target=/code %DOCKER_IMAGE% xmlatex %str%

0 commit comments

Comments
 (0)