guacamole-docker-compose icon indicating copy to clipboard operation
guacamole-docker-compose copied to clipboard

Postgres 13 required

Open heurekus opened this issue 2 years ago • 0 comments

Looks like Guacamole and Postgres 14(+) do not like each other very much. When using postgres:latest in docker-compose.yml, an internal server error occurs. Fix:

Change the following line from:

  postgres:
    image: postgres:latest

to:

  postgres:
    image: postgres:13

This pulls the latest postgres 13.x, which should still get updates until 2025.

heurekus avatar May 14 '22 12:05 heurekus