Files
mRemotify/docker-compose.yml
deadRabbit 42c63a5f2d Fix FreeRDP crash: echo VERSION param + upgrade guacd to latest
- rdp.ts: dynamically acknowledge guacd's VERSION_x_y_z parameter by
  echoing it back in the connect instruction. Without this, guacd 1.5+
  runs in legacy mode which crashes FreeRDP on modern Windows targets.
  Also add disable-glyph-caching and resize-method params.
- docker-compose: upgrade guacd from 1.5.4 to latest to get FreeRDP 3.x
  which fixes known crash bugs with Windows 11 22H2+ / Server 2022

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

62 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:
image: guacamole/guacd:latest
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: