{"id":18801296,"url":"https://github.com/trydock/docker-termite","last_synced_at":"2026-01-24T06:40:23.322Z","repository":{"id":146296059,"uuid":"222265507","full_name":"trydock/docker-termite","owner":"trydock","description":"Termite VTE Console","archived":false,"fork":false,"pushed_at":"2019-11-17T16:44:30.000Z","size":3,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"master","last_synced_at":"2025-05-21T21:10:02.962Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":null,"language":"Dockerfile","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/trydock.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}},"created_at":"2019-11-17T15:01:59.000Z","updated_at":"2019-11-17T16:44:32.000Z","dependencies_parsed_at":null,"dependency_job_id":"4bea6f23-b414-45f2-8b88-078fd9db97cc","html_url":"https://github.com/trydock/docker-termite","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/trydock/docker-termite","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/trydock%2Fdocker-termite","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/trydock%2Fdocker-termite/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/trydock%2Fdocker-termite/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/trydock%2Fdocker-termite/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/trydock","download_url":"https://codeload.github.com/trydock/docker-termite/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/trydock%2Fdocker-termite/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":28716845,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-01-24T05:53:42.649Z","status":"ssl_error","status_checked_at":"2026-01-24T05:53:41.698Z","response_time":89,"last_error":"SSL_read: unexpected eof while reading","robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":false,"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":[],"created_at":"2024-11-07T22:23:12.713Z","updated_at":"2026-01-24T06:40:23.301Z","avatar_url":"https://github.com/trydock.png","language":"Dockerfile","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Termite Console\n\n[![Build Status](https://travis-ci.org/trydock/docker-termite.svg?branch=master)](https://travis-ci.org/trydock/docker-termite)\n\n## Run on Docker\n\nI have my Debian (10) Buster workstation. My local username is `anish`\n\nMy local UID=`1000` and my GID=`1000`\n\nIf I manually invoke the `termite` from docker it will start with `root` ownership. which I do not want.\n\nSo, I use the below command to run termite on my local.\n\n```docker run --rm --user 1000 --net=host --env=\"DISPLAY\" --volume=\"$HOME/.Xauthority:/root/.Xauthority:rw\" --volume=\"$HOME:/home/anish\" trydock/dkr-termite termite```\n\n## CORRECT Method\n\nCreate a new directory on your local workstation.\n\n```mkdir local-termite```\n\nNavigate to the newly created directory `local-termite`\n\n```cd local-termite```\n\ncreate a file named `Dockerfile` with below content.\n\n```\nFROM trydock/dkr-termite:latest\n\nRUN groupadd -r -g 1000 anish \u0026\u0026 \\\n    useradd -r -u 1000 -g 1000 -c \"anish.asokan\" -s /bin/bash -d /home/anish anish\n```\n\nIn the above `Dockerfile` I am using `anish` as the username, You can use any username as you like.\nBut ensure that you replace the UID and GID with correct ones from your local workstation.\n\nThe issue the below command:\n\n```docker build -t local/termite .```\n\nThis will create a new docker image in your local name `local/termite`\n\nnow create a file on your workstation `/home/$USER/bin/termite` with below content.\n\n```\n#!/bin/bash\ndocker run --rm --user 1000 --net=host --env=\"DISPLAY\" --volume=\"$HOME/.Xauthority:/root/.Xauthority:rw\" --volume=\"$HOME:/home/anish\" local/termite termite\n```\n\nAdd execute permissions:\n\n```chmod +x /home/$USER/bin/termite```\n\nThen you can invoke `termite` command from your local workstation, which will automatically create a docker comtainer and run termite instance.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Ftrydock%2Fdocker-termite","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Ftrydock%2Fdocker-termite","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Ftrydock%2Fdocker-termite/lists"}