jlesage / docker-baseimage-gui

A minimal docker baseimage to ease creation of X graphical application containers
MIT License
1.2k stars 179 forks source link

32bit or i386 version. #116

Closed jokomad closed 11 months ago

jokomad commented 11 months ago

Are there any? And how to use them...

on dockerhub it states that there is a linux/386 version but i do not know how to select it in dockerfile...

FROM jlesage/baseimage-gui:alpine-3.15-v4...

jlesage commented 11 months ago

The baseimage is multi-arch. This means that the correct version will be selected depending on the arch of the machine from which you run docker build.

If you want to build for a different arch, then you need to use buildx: https://docs.docker.com/engine/reference/commandline/buildx_build/

jokomad commented 11 months ago

Thank you. Found it. Example for newbies like me:

FROM --platform=linux/386 jlesage/baseimage-gui:debian-11-v4.5

jlesage commented 11 months ago

You are right, that's another way.