First we need to compile the images
We can use the batch file build.bat
or execute the following commands
docker build -f arm.dockerfile -t docker-registry.wayproyect.com/hw-docker:arm .
docker build -f amd64.dockerfile -t docker-registry.wayproyect.com/hw-docker:amd64 .After compiling you have to upload the images to docker-registry Running
docker push docker-registry.wayproyect.com/hw-docker:arm
docker push docker-registry.wayproyect.com/hw-docker:amd64Once the images are in the registry you have to create the manifest file
docker manifest create
docker-registry.wayproyect.com/hw-docker
docker-registry.wayproyect.com/hw-docker:amd64
docker-registry.wayproyect.com/hw-docker:armTo finish you have to upload the file where we established the different architectures for our image
docker manifest push docker-registry.wayproyect.com/hw-docker