{"id":45104759,"url":"https://github.com/proxystore/images","last_synced_at":"2026-02-19T21:58:07.145Z","repository":{"id":104870728,"uuid":"576457535","full_name":"proxystore/images","owner":"proxystore","description":"Dockerfiles and images for testing and development","archived":false,"fork":false,"pushed_at":"2025-09-23T01:29:40.000Z","size":67,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":2,"default_branch":"main","last_synced_at":"2025-09-23T03:32:15.147Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":"","language":null,"has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/proxystore.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","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,"notice":null,"maintainers":null,"copyright":null,"agents":null,"dco":null,"cla":null}},"created_at":"2022-12-09T23:09:16.000Z","updated_at":"2025-09-23T01:29:42.000Z","dependencies_parsed_at":"2023-09-27T22:49:51.720Z","dependency_job_id":"4a218c9b-4382-4460-b239-574034ee4acf","html_url":"https://github.com/proxystore/images","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/proxystore/images","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/proxystore%2Fimages","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/proxystore%2Fimages/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/proxystore%2Fimages/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/proxystore%2Fimages/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/proxystore","download_url":"https://codeload.github.com/proxystore/images/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/proxystore%2Fimages/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":29634559,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-02-19T18:02:07.722Z","status":"ssl_error","status_checked_at":"2026-02-19T18:01:46.144Z","response_time":117,"last_error":"SSL_connect returned=1 errno=0 peeraddr=140.82.121.6: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":"2026-02-19T21:58:07.078Z","updated_at":"2026-02-19T21:58:07.136Z","avatar_url":"https://github.com/proxystore.png","language":null,"funding_links":[],"categories":[],"sub_categories":[],"readme":"# Proxystore Images\n\nThis repo contains Dockerfiles used for testing Proxystore's code.\n\"Nightly\" image builds are created on the 1st and 15th of the month or when the corresponding Dockerfile is changed.\n\n| Dockerfile | Location | Details |\n| :--------  | :------- | :------ |\n| [`Dockerfile-dim`](dockerfiles/Dockerfile-dim) | `ghcr.io/proxystore/proxystore-dim:nightly` | [Details](#dockerfile-dim) |\n| [`Dockerfile-relay`](dockerfiles/Dockerfile-relay) | `ghcr.io/proxystore/proxystore-relay:nightly` | [Details](#dockerfile-relay) |\n\n## Adding Dockerfiles\n\n1. Add the Dockerfile to `dockerfiles/`.\n2. Add a section in this README with any instructions.\n3. Update the table in this README with the links.\n4. Add a new matrix entry in [`.github/workflows/check.yml`](.github/workflows/check.yml).\n5. Add a new matrix entry in [`.github/workflows/publish.yml`](.github/workflows/publish.yml).\n\n## Dockerfile-dim\n\n### Usage\n\nTo effectively work on a system, the `Dockerfile-dim` image needs to be compiled on the machine it will be used on.\n\nFor usage with Github Actions CI, a prebuilt image is provided.\n\n### Pull and Run\n\n```bash\n$ docker run --rm -it --network host -v \u003clocal_path_to_proxystore_dir\u003e:/proxystore ghcr.io/proxystore/proxystore-dim\n```\n\n### Build and Run\n\n```bash\n$ docker build -t proxystore-dim -f dockerfiles/Dockerfile-dim .\n$ docker run --rm -it --network host -v \u003clocal_path_to_proxystore_dir\u003e:/proxystore proxystore-dim\n```\n\n### Executing test cases\n\nThis can be done as usual using tox: `$ tox -e py39`.\nAll Python versions are available and `tox` is pre-added to the `$PATH`.\n\n## Dockerfile-relay\n\nRelay (signaling) server runner image for testing p2p communication.\nThis image installs the latest release of ProxyStore from PyPI.\n\n### Pull and Run\n\nThe container defaults to exposing port 8700 and starting the relay using\na configuration file mounted at `/data/config.toml`. The configuration file\nlocation can be overridden via the `CONFIG` environment variable passed to\n`docker run`. E.g., `-e CONFIG=/path/in/container/to/config.toml`. Update\nthe `-v $(pwd)/data:/data` mount depending on the location of your\nconfiguration file.\n\n```bash\n$ docker run --rm -it -p 8700:8700 -v $(pwd)/data:/data --name relay ghcr.io/proxystore/proxystore-relay\n```\n\nAll configuration of the relay server should be done via the configuration\nfile.\n\n### Build and Run\n\nWhen building the container, the following build arguments can be specified\n(listed are the default values).\n* `--build-arg PYTHON_VERSION=3.11`\n* `--build-arg CONFIG=/data/config.toml`\n* `--build-arg PORT=8700`\n\n```bash\n$ docker build -t proxystore-relay -f dockerfiles/Dockerfile-relay .\n$ docker run --rm -it -p 8700:8700 -v $(pwd)/data:/data --name relay proxystore-relay\n```\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fproxystore%2Fimages","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fproxystore%2Fimages","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fproxystore%2Fimages/lists"}