{"id":30155325,"url":"https://github.com/ageagainstthemachine/remmina-docker-compose","last_synced_at":"2026-02-09T02:33:19.747Z","repository":{"id":309297170,"uuid":"1035738872","full_name":"ageagainstthemachine/Remmina-Docker-Compose","owner":"ageagainstthemachine","description":"A simple compose file for Remmina.","archived":false,"fork":false,"pushed_at":"2025-08-11T03:26:32.000Z","size":13,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":0,"default_branch":"main","last_synced_at":"2025-08-11T05:27:19.064Z","etag":null,"topics":["docker-compose-files","remmina"],"latest_commit_sha":null,"homepage":"","language":null,"has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/ageagainstthemachine.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":null,"code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null,"zenodo":null}},"created_at":"2025-08-11T02:45:53.000Z","updated_at":"2025-08-11T03:26:35.000Z","dependencies_parsed_at":"2025-08-11T05:27:20.095Z","dependency_job_id":"f4729a3b-2588-405f-94bf-6dc571849a2f","html_url":"https://github.com/ageagainstthemachine/Remmina-Docker-Compose","commit_stats":null,"previous_names":["ageagainstthemachine/remmina-docker-compose"],"tags_count":null,"template":false,"template_full_name":null,"purl":"pkg:github/ageagainstthemachine/Remmina-Docker-Compose","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ageagainstthemachine%2FRemmina-Docker-Compose","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ageagainstthemachine%2FRemmina-Docker-Compose/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ageagainstthemachine%2FRemmina-Docker-Compose/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ageagainstthemachine%2FRemmina-Docker-Compose/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/ageagainstthemachine","download_url":"https://codeload.github.com/ageagainstthemachine/Remmina-Docker-Compose/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ageagainstthemachine%2FRemmina-Docker-Compose/sbom","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":269890572,"owners_count":24491730,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","status":"online","status_checked_at":"2025-08-11T02:00:10.019Z","response_time":75,"last_error":null,"robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":true,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["docker-compose-files","remmina"],"created_at":"2025-08-11T12:35:49.784Z","updated_at":"2026-02-09T02:33:19.741Z","avatar_url":"https://github.com/ageagainstthemachine.png","language":null,"funding_links":[],"categories":[],"sub_categories":[],"readme":"# Remmina in Docker (Compose)\n\nThis repository provides a minimal Docker Compose setup for running [Remmina](https://remmina.org/) using the [LinuxServer.io Remmina image](https://docs.linuxserver.io/images/docker-remmina/). It maps a local `./config` folder for persistent settings and exposes a web UI on port `3144`.\n\n---\n\n## Compose file\n\nPlease see the compose file [here](docker-compose.yml).\n\n---\n\n## Quick start\n\n1) Clone and enter the repo:\n```bash\ngit clone https://github.com/ageagainstthemachine/Remmina-Docker-Compose.git\ncd remmina-docker\n````\n\n2. Create the config directory (persisted in `./config`):\n\n```bash\nmkdir -p config\n```\n\n3. Open `docker-compose.yml` and set at least:\n\n* `CUSTOM_USER` (login user)\n* `PASSWORD` (login password)\n* `TZ` (e.g., `America/Los_Angeles`)\n\n\u003e Note on PUID/PGID: This compose file sets `PUID=1026` and `PGID=100` by default. You generally do not need to change these unless you know what you're doing. There is more information [here](https://docs.linuxserver.io/images/docker-remmina/#user-group-identifiers).\n\n4. Launch:\n\n```bash\ndocker compose up -d\n```\n\nThen browse to:\n\n```\nhttp://localhost:3144\n```\n\n---\n\n## Configuration\n\n**Data directory**\n\n* `./config` on the host is mounted to `/config` in the container (Remmina profiles and preference data persists here).\n\n**Ports**\n\n* Host `3144` → Container `3000` (web UI)\n\n**Environment variables**\n\n| Variable      | Purpose                                    | Default in this repo |\n| ------------- | ------------------------------------------ | -------------------- |\n| `CUSTOM_USER` | Web UI username                            | (set by you)         |\n| `PASSWORD`    | Web UI password                            | (set by you)         |\n| `TZ`          | Container timezone                         | (set by you)         |\n| `PUID`        | Optional: host user ID for file ownership  | `1026`               |\n| `PGID`        | Optional: host group ID for file ownership | `100`                |\n\n---\n\n## Notes on compose versions and commands\n\n* **Modern compose (v2+)**: The `version:` key is optional and can be removed. The recommended command is `docker compose ...` (with a space).\n* **Older setups**: You might still use `docker-compose ...` (hyphenated). Keeping `version: \"3.9\"` preserves compatibility with older environments.\n* **File name**: Modern Docker will pick up `compose.yaml`, `compose.yml`, or `docker-compose.yml`. This repo uses `docker-compose.yml`.\n\n---\n\n## Common tasks\n\nPull updated image and recreate:\n\n```bash\ndocker compose pull\ndocker compose up -d\n```\n\nStop and remove the stack:\n\n```bash\ndocker compose down\n```\n\nRemove the stack and the persisted `./config` volume mapping (data loss):\n\n```bash\ndocker compose down -v\n```\n\n---\n\n## Links\n\n* Remmina [website](https://remmina.org/)\n* Remmina [source](https://gitlab.com/Remmina/Remmina)\n* LinuxServer Remmina image [docs](https://docs.linuxserver.io/images/docker-remmina/)\n* Docker Compose [spec](https://compose-spec.io/)\n* Docker [install](https://docs.docker.com/get-docker/)\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fageagainstthemachine%2Fremmina-docker-compose","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fageagainstthemachine%2Fremmina-docker-compose","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fageagainstthemachine%2Fremmina-docker-compose/lists"}