jwetzell / docker-guacamole

A self-contained guacamole docker container for x64 and ARM. Remotely connect over SSH, RDP or VNC using HTML5.
https://hub.docker.com/r/oznu/guacamole/
GNU General Public License v3.0
108 stars 18 forks source link

Question - Change Image from Onzu to jwetzell #2

Closed redtripleAAA closed 2 years ago

redtripleAAA commented 2 years ago

Greetings,

Thanks for taking care of this image.

Just wanted to confirm, I have been using the old original image from Onzu. # https://github.com/oznu/docker-guacamole

Docker Compose.

version: '3.3'
services:
    guacamole:
        image: oznu/guacamole
        container_name: rds_guacamole_stack
        ports:
            - '8106:8080'
        volumes:
            - '/volume1/docker/containers/guacamole/stack:/config'
        environment:
            - 'EXTENSIONS=auth-duo'

Can I just simply replace the image in the compose: FROM image: oznu/guacamole TO image: jwetzell/guacamole

And existing should work?

Thanks!

redtripleAAA commented 2 years ago

Okay, I just confirmed, replacing the image in the compose with new one everything seems to be working fine.

Thanks again for taking care of this project!