forked from Deuxfleurs/garage
[nix-improvements] special case for Docker's "386" architecture
This commit is contained in:
parent
561fad0b44
commit
f7ae966ed3
1 changed files with 2 additions and 2 deletions
|
@ -45,8 +45,8 @@ in
|
|||
function to_docker {
|
||||
executor \
|
||||
--force \
|
||||
--customPlatform="''${DOCKER_PLATFORM}" \
|
||||
--destination "''${CONTAINER_NAME}:''${CONTAINER_TAG}" \
|
||||
--customPlatform="$(echo "''${DOCKER_PLATFORM}" | sed 's/i386/386/')" \
|
||||
--destination "$(echo "''${CONTAINER_NAME}" | sed 's/i386/386/'):''${CONTAINER_TAG}" \
|
||||
--context dir://`pwd` \
|
||||
--verbosity=debug
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue