Skip to content

Commit 0750f05

Browse files
authored
Merge pull request #84 from robinlehrmann/platform-fallback
removed DOCKER_DEFAULT_PLATFORM due to missing arm containers
2 parents f26f387 + 2fd7f19 commit 0750f05

File tree

2 files changed

+0
-3
lines changed

2 files changed

+0
-3
lines changed

commands/system/env.sh

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,6 @@ function system:env() {
1414
echo HELPER_DIR=${HELPER_DIR}
1515
echo NETWORK_NAME=${NETWORK_NAME}
1616
echo DOCKER_BUILDKIT=${DOCKER_BUILDKIT}
17-
echo DOCKER_DEFAULT_PLATFORM=${DOCKER_DEFAULT_PLATFORM}
1817
echo DDE_UID=${DDE_UID}
1918
echo DDE_GID=${DDE_GID}
2019
echo ""

dde.sh

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,13 +13,11 @@ NETWORK_NAME=dde
1313
DOCKER_BUILDKIT=1
1414
DDE_UID=$(id -u)
1515
DDE_GID=$(id -g)
16-
DOCKER_DEFAULT_PLATFORM=$(uname -m | sed 's/x86_64/linux\/amd64/; s/arm64/linux\/arm64/')
1716
DDE_BROWSER=
1817
DDE_CONTAINER_SHELL=sh
1918
export DDE_UID
2019
export DDE_GID
2120
export DDE_CONTAINER_SHELL
22-
export DOCKER_DEFAULT_PLATFORM
2321

2422
# If we're running in CI we need to disable TTY allocation for docker-compose
2523
# commands that enable it by default, such as exec and run.

0 commit comments

Comments
 (0)