Files
mRemotify/docker-compose.yml
felixg 6e9719d331 Add custom guacd Dockerfile with FreeRDP 3.x to fix Windows 11 NLA crash
The official guacamole/guacd image ships FreeRDP 2.x, which crashes
silently when connecting to Windows 11 22H2+ hosts due to NLA/CredSSP
cipher-suite changes. FreeRDP 3.x resolves this.

- docker/guacd.Dockerfile: builds guacamole-server 1.6.0 from source on
  Ubuntu 24.04 against freerdp3-dev (FreeRDP 3.5.1+); uses
  CPPFLAGS=-Wno-error=deprecated-declarations to suppress upstream
  deprecation warnings in freerdp3 headers
- docker-compose.yml: switch guacd service from official image to local build

Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
2026-02-22 14:46:39 +01:00

64 lines
1.2 KiB
YAML

services:
postgres:
image: postgres:16-alpine
restart: unless-stopped
environment:
POSTGRES_USER: mremotify
POSTGRES_PASSWORD: mremotify
POSTGRES_DB: mremotify
volumes:
- postgres_data:/var/lib/postgresql/data
networks:
- internal
healthcheck:
test: ['CMD-SHELL', 'pg_isready -U mremotify']
interval: 5s
timeout: 5s
retries: 10
guacd:
build:
context: .
dockerfile: docker/guacd.Dockerfile
restart: unless-stopped
environment:
GUACD_LOG_LEVEL: debug
networks:
- internal
backend:
build:
context: .
dockerfile: docker/backend.Dockerfile
restart: unless-stopped
env_file: .env
environment:
POSTGRES_URL: postgresql://mremotify:mremotify@postgres:5432/mremotify
GUACD_HOST: guacd
GUACD_PORT: '4822'
depends_on:
postgres:
condition: service_healthy
guacd:
condition: service_started
networks:
- internal
frontend:
build:
context: .
dockerfile: docker/frontend.Dockerfile
restart: unless-stopped
ports:
- '80:80'
depends_on:
- backend
networks:
- internal
networks:
internal:
volumes:
postgres_data: