Hello im currently trying to install guacamole in a docker environment using the official docker containers as follows

 

guacamole/guacamole

guacamole/guacd

postgres

 

this is the docker-compose.yaml file i created for testing and ease of upgrades


version: "2.1"
services:
  guacamole:
    image: guacamole/guacamole
    container_name: some-guacamole
    environment:
      - POSTGRES_DATABASE=guacamole_db
      - POSTGRES_USER=guacamole_user
      - POSTGRES_PASSWORD=some_password
      - GUACD_HOSTNAME=some-guacd
      - GUACD_PORT=4822
      - POSTGRES_HOSTNAME=some-postgres
      - POSTREES_PORT=5432
      - TZ= America/New_York
    ports:
      - 8080:8080
    restart: unless-stopped

  guacd:
    image: guacamole/guacd
    container_name: some-guacd
    ports:
      - 4822:4822
    restart: unless-stopped

  postgres:
    image: postgres
    container_name: some-postgres
    environment:
      - POSTGRES_DATABASE=guacamole_db
      - POSTGRES_USER=guacamole_user
      - POSTGRES_PASSWORD=some_password
    ports:
      - 5432:5432
    volumes:
      -  /home/YOURUSERNAME/config/guacamole:/var/lib/postgresql/data
    restart: unless-stopped

 

the problem is that once i get the containers running i can access the web interface

with the url but all it tells me is that. ERROR if it does not resolve please contact your system administrator which is me so yay.

 

ive been looking through the documentation and i think i need to create the guacamole_db but i also get the error that role root does not exist and all i can do is brows around i tried to use portainer to exec into the container as root and that works but im not sure if im missing something or if i missed a prerequisit.

 

the system is a fresh install of debian 11 with the latest patched and only docker and docker-compose installed

 

any assistance would be appreciated

thanks

 

 

Sent from Mail for Windows

 

--------------------------------------------------------------------- To unsubscribe, e-mail: user-unsubscr...@guacamole.apache.org For additional commands, e-mail: user-h...@guacamole.apache.org

Reply via email to