You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
wiki/how-to-publish.txt

10 lines
493 B

This file contains ambiguous Unicode characters!

This file contains ambiguous Unicode characters that may be confused with others in your current locale. If your use case is intentional and legitimate, you can safely ignore this warning. Use the Escape button to highlight these characters.

Сначала включить билдер (единоразово):
docker buildx create --use --name multiarch-builder
Сбилдить и само запушит:
docker buildx build --platform linux/amd64,linux/arm64 -f ./dev/build/Dockerfile -t mauzzz0/wiki-js:1.1 -t mauzzz0/wiki-js:latest --push .
А это уже не надо:
docker build --platform linux/amd64 -f ./dev/build/Dockerfile -t mauzzz0/wiki-js:1.1 -t mauzzz0/wiki-js:latest .
docker push mauzzz0/wiki-js --all-tags