{"id":15866593,"url":"https://github.com/bluxmit/wrk-compose","last_synced_at":"2026-02-09T08:32:57.132Z","repository":{"id":176727765,"uuid":"659235451","full_name":"bluxmit/wrk-compose","owner":"bluxmit","description":null,"archived":false,"fork":false,"pushed_at":"2023-06-28T13:07:04.000Z","size":15,"stargazers_count":1,"open_issues_count":0,"forks_count":2,"subscribers_count":2,"default_branch":"main","last_synced_at":"2025-08-24T21:29:45.339Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":null,"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/bluxmit.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":"2023-06-27T12:05:01.000Z","updated_at":"2024-11-05T04:19:14.000Z","dependencies_parsed_at":"2023-07-03T06:46:15.765Z","dependency_job_id":null,"html_url":"https://github.com/bluxmit/wrk-compose","commit_stats":{"total_commits":18,"total_committers":2,"mean_commits":9.0,"dds":0.05555555555555558,"last_synced_commit":"2eaced7415f49e4cb3db6febf0b660ea45a88e83"},"previous_names":["bluxmit/wrk-compose"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/bluxmit/wrk-compose","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/bluxmit%2Fwrk-compose","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/bluxmit%2Fwrk-compose/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/bluxmit%2Fwrk-compose/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/bluxmit%2Fwrk-compose/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/bluxmit","download_url":"https://codeload.github.com/bluxmit/wrk-compose/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/bluxmit%2Fwrk-compose/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":29260031,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-02-09T04:11:57.159Z","status":"ssl_error","status_checked_at":"2026-02-09T04:11:56.117Z","response_time":56,"last_error":"SSL_connect returned=1 errno=0 peeraddr=140.82.121.5:443 state=error: 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-10-05T23:21:35.154Z","updated_at":"2026-02-09T08:32:57.118Z","avatar_url":"https://github.com/bluxmit.png","language":null,"funding_links":[],"categories":[],"sub_categories":[],"readme":"# Alnoda workspaces compose \n\nThis repo contains example of docker-compose that can be used to launch \nself-hosted Alnoda workspaces with docker compose. \n\n## HTTPS\n\nTo start Alnoda workspace on a cloud server with basic authentication over https with self-signed certificate: \n\n- Make sure server has docker and docker compose \n- Make sure ports 8020 - 8040 are not blocked by the firewall. For example in Ubuntu/Debian \n\n```\nufw allow 8020:8040/tcp\n```\n\n- Clone repository \n\n```\ngit clone https://github.com/bluxmit/wrk-compose.git\ncd wrk-compose\n```\n\n- Set environmental variable `WRK_HOST` - public server IP which allows access over the Internet, i.e.\n\n```\nexport WRK_HOST=34.194.12\n```\n\n- start workspace \n\n```\ncd basic-auth-https; docker-compose up -d\n```\n\nNow you can open browser on __https://[WRK_HOST]:8020__\n\n## Other workspaces \n\nBy default latest base Alnoda workspace will run.  \n\nYou can start another worksppace with evironmental variable _WRK_IMAGE_, for example \n\n```\nexport WRK_IMAGE='alnoda/codeserver-workspace:5.0'\n```\n\n\n## Basic authentication\n\nthe default authentication is \n\n- user: admin\n- password: admin\n\nYou can create new login workspace with __htpasswd__. \n\nYou can install htpasswd in any of the alnoda workspaces with \n\n```\nsudo apt-get install apache2-utils -y\n```\n\nTo create new user:password pair:\n\n```\necho $(htpasswd -nB \u003cuserName\u003e) | sed -e s/\\\\$/\\\\$\\\\$/g\n```\n\nwhere _\u003cuserName\u003e_ - is the name of your user. \n\nEnter password on prompt and __htpasswd__ wil produce credentials, for example _someuser:$$2y$$05$$t2MSJSPp2V9HdLWYq9z.UeYFz2R3un9ZuiBitSjeiN3Osz6fGNZ7u_ \n\nYou can use to replace in the respective docker-compose yaml file the label of a traefik service `traefik.http.middlewares.basic-auth.basicauth.users=admin:$$2y$$05$$eub6CV.CwUYCCQjNBvSf5uZnzdRmVwGZ/ncxecb9O7WxCR8aLuM3K`.\n\n\n## HTTP\n\n__Using HTTP to run workspaces on a remote server lacks sufficient security, as it's not encrypted like HTTPS. This method should be avoided unless you're operating workspaces within an internal network.__\n\nYou  start Alnoda workspace on a cloud server with basic authentication __over http__ use another docker-compose file: \n\n```\ncd basic-auth-http; docker-compose up -d\n```\n\nNow you can open browser on __http://[WRK_HOST]:8020__","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fbluxmit%2Fwrk-compose","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fbluxmit%2Fwrk-compose","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fbluxmit%2Fwrk-compose/lists"}