Differences
This shows you the differences between two versions of the page.
Next revision | Previous revision | ||
docker_notes:vnc [2024-12-26 Thu wk52 12:23] – created baumkp | docker_notes:vnc [2025-07-05 Sat wk27 18:36] (current) – baumkp | ||
---|---|---|---|
Line 1: | Line 1: | ||
+ | {{tag> | ||
+ | ======VNC====== | ||
+ | I set up Guacamole using [[https:// | ||
+ | * < | ||
- | <- docker_notes: | + | ++++My docker-compose.yml| |
+ | <code yaml> | ||
+ | services: | ||
+ | # MariaDB - MySQL Database | ||
+ | mariadb: | ||
+ | container_name: | ||
+ | image: linuxserver/ | ||
+ | restart: always | ||
+ | networks: | ||
+ | # - proxy | ||
+ | - guac | ||
+ | security_opt: | ||
+ | - no-new-privileges: | ||
+ | # ports: | ||
+ | # - " | ||
+ | volumes: | ||
+ | - ./ | ||
+ | - / | ||
+ | - / | ||
+ | environment: | ||
+ | - PUID=$PUID | ||
+ | - PGID=$PGID | ||
+ | - MYSQL_ROOT_PASSWORD=$MYSQL_ROOT_PASSWORD | ||
+ | |||
+ | # Guacamole Daemon - Needed for Guacamole | ||
+ | guacd: | ||
+ | image: guacamole/ | ||
+ | container_name: | ||
+ | restart: unless-stopped | ||
+ | security_opt: | ||
+ | - no-new-privileges: | ||
+ | networks: | ||
+ | # - proxy | ||
+ | - guac | ||
+ | |||
+ | # Guacamole - Remote desktop, SSH, on Telnet on any HTML5 Browser | ||
+ | # Create all databases and tables first | ||
+ | guacamole: | ||
+ | image: guacamole/ | ||
+ | container_name: | ||
+ | |||
+ | restart: unless-stopped | ||
+ | |||
+ | networks: | ||
+ | - proxy | ||
+ | - guac | ||
+ | |||
+ | security_opt: | ||
+ | - no-new-privileges: | ||
+ | |||
+ | # | ||
+ | # - " | ||
+ | |||
+ | environment: | ||
+ | GUACD_HOSTNAME: | ||
+ | MYSQL_HOSTNAME: | ||
+ | MYSQL_PORT: $DB_PORT | ||
+ | MYSQL_DATABASE: | ||
+ | MYSQL_USER: $GUAC_MYSQL_USER | ||
+ | MYSQL_PASSWORD: | ||
+ | |||
+ | depends_on: | ||
+ | - mariadb | ||
+ | - guacd | ||
+ | |||
+ | labels: | ||
+ | - " | ||
+ | - " | ||
+ | ## HTTP Routers | ||
+ | - " | ||
+ | - " | ||
+ | - " | ||
+ | ## Middlewares | ||
+ | #- " | ||
+ | - " | ||
+ | - " | ||
+ | ## HTTP Services | ||
+ | - " | ||
+ | - " | ||
+ | |||
+ | networks: | ||
+ | proxy: | ||
+ | external: true | ||
+ | guac: | ||
+ | </ | ||
+ | ++++ | ||
+ | |||
+ | |||
+ | |||
+ | ====References==== | ||
+ | *How to Forge [[https:// | ||
+ | *[[https:// | ||
+ | *[[https:// | ||
+ | *[[https:// | ||
+ | *[[https:// | ||
+ | *[[https:// | ||
+ | *[[https:// | ||
+ | *[[https:// | ||
+ | *[[https:// | ||
+ | *[[https:// | ||
+ | |||
+ | <- docker_notes: |