From e876712984256434239a0f7f1542cf1e65a5975f Mon Sep 17 00:00:00 2001 From: Ani peter benjamin <99623072+vortex-hue@users.noreply.github.com> Date: Wed, 24 Jan 2024 02:53:34 +0100 Subject: [PATCH 1/6] Update launch-all.sh Since most users use docker compose v1.x, it'll be nice to update this --- launch-all.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/launch-all.sh b/launch-all.sh index 178766f..f0109b8 100755 --- a/launch-all.sh +++ b/launch-all.sh @@ -7,4 +7,4 @@ # Copyright (c) 2021-present Kaleidos Ventures SL set -x -exec docker compose -f docker-compose.yml -f docker-compose.penpot.yml up -d $@ +exec docker-compose -f docker-compose.yml -f docker-compose.penpot.yml up -d $@ From 7960defbe470a81925390d60c8383fb8d328c602 Mon Sep 17 00:00:00 2001 From: Ani peter benjamin <99623072+vortex-hue@users.noreply.github.com> Date: Wed, 24 Jan 2024 02:54:26 +0100 Subject: [PATCH 2/6] Update taiga-manage.sh madeit compatible with docker compose v1.x --- taiga-manage.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/taiga-manage.sh b/taiga-manage.sh index 9624bcc..d29ba4d 100755 --- a/taiga-manage.sh +++ b/taiga-manage.sh @@ -7,4 +7,4 @@ # Copyright (c) 2021-present Kaleidos Ventures SL set -x -exec docker compose -f docker-compose.yml -f docker-compose-inits.yml run --rm taiga-manage $@ +exec docker-compose -f docker-compose.yml -f docker-compose-inits.yml run --rm taiga-manage $@ From 332ae943a5dcb9ea9e17d4e48aeed4ddc35e5e31 Mon Sep 17 00:00:00 2001 From: Ani peter benjamin <99623072+vortex-hue@users.noreply.github.com> Date: Wed, 24 Jan 2024 02:55:52 +0100 Subject: [PATCH 3/6] Compatible with docker compose v2.x --- taiga-manage-v2.sh | 10 ++++++++++ 1 file changed, 10 insertions(+) create mode 100644 taiga-manage-v2.sh diff --git a/taiga-manage-v2.sh b/taiga-manage-v2.sh new file mode 100644 index 0000000..9624bcc --- /dev/null +++ b/taiga-manage-v2.sh @@ -0,0 +1,10 @@ +#!/usr/bin/env sh + +# This Source Code Form is subject to the terms of the Mozilla Public +# License, v. 2.0. If a copy of the MPL was not distributed with this +# file, You can obtain one at http://mozilla.org/MPL/2.0/. +# +# Copyright (c) 2021-present Kaleidos Ventures SL + +set -x +exec docker compose -f docker-compose.yml -f docker-compose-inits.yml run --rm taiga-manage $@ From 70e521dfb6b03721e39935eb1000308bc88a65b4 Mon Sep 17 00:00:00 2001 From: Ani peter benjamin <99623072+vortex-hue@users.noreply.github.com> Date: Wed, 24 Jan 2024 02:58:36 +0100 Subject: [PATCH 4/6] compatible with docker compose v2.x --- launch-all-v2.sh | 10 ++++++++++ 1 file changed, 10 insertions(+) create mode 100644 launch-all-v2.sh diff --git a/launch-all-v2.sh b/launch-all-v2.sh new file mode 100644 index 0000000..178766f --- /dev/null +++ b/launch-all-v2.sh @@ -0,0 +1,10 @@ +#!/usr/bin/env sh + +# This Source Code Form is subject to the terms of the Mozilla Public +# License, v. 2.0. If a copy of the MPL was not distributed with this +# file, You can obtain one at http://mozilla.org/MPL/2.0/. +# +# Copyright (c) 2021-present Kaleidos Ventures SL + +set -x +exec docker compose -f docker-compose.yml -f docker-compose.penpot.yml up -d $@ From 9fd849e208168ebf165cefda5d8afb1ed8fdac40 Mon Sep 17 00:00:00 2001 From: Ani peter benjamin <99623072+vortex-hue@users.noreply.github.com> Date: Wed, 24 Jan 2024 03:00:33 +0100 Subject: [PATCH 5/6] for compatibility iwth docker compose v1.x --- launch-taiga.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/launch-taiga.sh b/launch-taiga.sh index 20c47ad..12f4476 100755 --- a/launch-taiga.sh +++ b/launch-taiga.sh @@ -7,4 +7,4 @@ # Copyright (c) 2021-present Kaleidos Ventures SL set -x -exec docker compose -f docker-compose.yml up -d $@ +exec docker-compose -f docker-compose.yml up -d $@ From 3eca7c3f69a287d4bbc9556b770e7b1fd4e97df9 Mon Sep 17 00:00:00 2001 From: Ani peter benjamin <99623072+vortex-hue@users.noreply.github.com> Date: Wed, 24 Jan 2024 03:01:51 +0100 Subject: [PATCH 6/6] Create launch-taiga-v2.sh Use when running on docker-compose v2.x --- launch-taiga-v2.sh | 10 ++++++++++ 1 file changed, 10 insertions(+) create mode 100644 launch-taiga-v2.sh diff --git a/launch-taiga-v2.sh b/launch-taiga-v2.sh new file mode 100644 index 0000000..20c47ad --- /dev/null +++ b/launch-taiga-v2.sh @@ -0,0 +1,10 @@ +#!/usr/bin/env sh + +# This Source Code Form is subject to the terms of the Mozilla Public +# License, v. 2.0. If a copy of the MPL was not distributed with this +# file, You can obtain one at http://mozilla.org/MPL/2.0/. +# +# Copyright (c) 2021-present Kaleidos Ventures SL + +set -x +exec docker compose -f docker-compose.yml up -d $@