On Tue, Jan 27, 2026 at 2:58 AM Gal Sabas <[email protected]> wrote: > > I use my own Dockerfile to create guacd 1.5.5 image, my image is based on > guacamole/guacd:1.5.5. > > What changes do I need to make to make sure I use FreeRDP 3.x in my image? > > My Dockerfile is very basic: > > FROM guacamole/guacd:1.5.5 > > USER root > > < RUN some apk commands and other basic commands> > > < RUN mkdir fort he image> >
If you're using the 1.5.5 guacd image, then you probably won't be able to accomplish this simply by using FROM and making changes - at least, not without significant changes that basically replace the entire FreeRDP distribution. You would, instead, need to pull the 1.5.5 tag from git and modify the Dockerfile to install FreeRDP3. The base image uses Alpine Linux, so i'm not entirely sure how easy that would be to do. If you use the 1.6.0 source, you can modify the Dockerfile and change the FREERDP_VERSION variable from 2 to 3, then build the image: https://github.com/apache/guacamole-server/blob/1f664e08feae6e7d15d8146b78acab2e6fb470ae/Dockerfile#L40-L41 -Nick --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
