jlesage / docker-baseimage-gui

A minimal docker baseimage to ease creation of X graphical application containers

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

32bit or i386 version.

jokomad opened this issue · comments

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...

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/

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

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

You are right, that's another way.