{"id":16162067,"url":"https://github.com/peterdavehello/docker-azcopy","last_synced_at":"2025-03-18T22:30:52.682Z","repository":{"id":43266941,"uuid":"276582701","full_name":"PeterDaveHello/docker-azcopy","owner":"PeterDaveHello","description":"🐳 Tiny Dockerized AzCopy (Azure Storage data transfer utility) inside Alpine Linux 🐧 (~10MB)","archived":false,"fork":false,"pushed_at":"2025-01-27T20:11:49.000Z","size":23,"stargazers_count":18,"open_issues_count":1,"forks_count":13,"subscribers_count":2,"default_branch":"master","last_synced_at":"2025-03-17T00:04:05.781Z","etag":null,"topics":["azcopy","azure","cli","container","copy","data","docker","docker-image","hacktoberfest","storage","sync"],"latest_commit_sha":null,"homepage":"https://hub.docker.com/r/peterdavehello/azcopy","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/PeterDaveHello.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":"2020-07-02T07:48:49.000Z","updated_at":"2025-03-02T15:13:53.000Z","dependencies_parsed_at":"2024-10-21T14:37:33.376Z","dependency_job_id":null,"html_url":"https://github.com/PeterDaveHello/docker-azcopy","commit_stats":null,"previous_names":[],"tags_count":54,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/PeterDaveHello%2Fdocker-azcopy","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/PeterDaveHello%2Fdocker-azcopy/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/PeterDaveHello%2Fdocker-azcopy/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/PeterDaveHello%2Fdocker-azcopy/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/PeterDaveHello","download_url":"https://codeload.github.com/PeterDaveHello/docker-azcopy/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":244318406,"owners_count":20433896,"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","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":["azcopy","azure","cli","container","copy","data","docker","docker-image","hacktoberfest","storage","sync"],"created_at":"2024-10-10T02:28:58.859Z","updated_at":"2025-03-18T22:30:52.437Z","avatar_url":"https://github.com/PeterDaveHello.png","language":"Dockerfile","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Docker-AzCopy\n\n[![Build Status](https://app.travis-ci.com/PeterDaveHello/docker-azcopy.svg?branch=master)](https://app.travis-ci.com/PeterDaveHello/docker-azcopy)\n[![Docker Hub pulls](https://img.shields.io/docker/pulls/peterdavehello/azcopy.svg)](https://hub.docker.com/r/peterdavehello/azcopy/)\n\n[![Docker Hub badge](http://dockeri.co/image/peterdavehello/azcopy)](https://hub.docker.com/r/peterdavehello/azcopy/)\n\nDocker-AzCopy is a Docker image based on Alpine Linux, pre-installed with Azure AzCopy tool. It offers multiple versions of AzCopy to choose from and can be easily utilized and integrated into CI/CD workflows.\n\n- GitHub: \u003chttps://github.com/PeterDaveHello/docker-azcopy\u003e\n- Docker Hub: \u003chttps://hub.docker.com/r/peterdavehello/azcopy\u003e\n\nSee the [AzCopy README](https://github.com/Azure/azure-storage-azcopy/#readme) for more information.\n\n## Docker image Repository\n\nWe push the built image to Docker Hub and GitHub Container Registry:\n\n- GitHub Container Registry:\n  - `ghcr.io/peterdavehello/azcopy`\n  - \u003chttps://github.com/PeterDaveHello/azcopy/pkgs/container/azcopy\u003e\n- Docker Hub:\n  - `peterdavehello/azcopy`\n  - \u003chttps://hub.docker.com/r/peterdavehello/azcopy/\u003e\n\nUse the prefix `ghcr.io/` if you prefer to use GitHub Container Registry.\n\n## Versioning\n\nThe Docker image tags available here correspond to Azure AzCopy versions found on [its releases page on GitHub](https://github.com/Azure/azure-storage-azcopy/releases), without the `v` prefix.\n\nThe `latest` tag and short version (version string without the minor or patch version) are also supported. For example, using tag `10` will be the same as using the latest `10.x.y`, whatever the current latest version of v10 is.\n\nYou can find valid versions on the [Docker Hub Tags](https://hub.docker.com/r/peterdavehello/azcopy/tags) page.\n\nAlthough most versions of AzCopy have corresponding images here, please note that inactive images may be removed by Docker Hub. For more information, see the Docker blog post \"[Scaling Docker's business to serve millions more developers, storage partners, and enterprises](https://www.docker.com/blog/scaling-dockers-business-to-serve-millions-more-developers-storage/).\"\n\n## Usage\n\n```sh\ndocker run --rm -it -v /local/path/to/mount:/container/path peterdavehello/azcopy[:\u003cversion\u003e] azcopy [command] [arguments]\n```\n\nFor example:\n\n```sh\ndocker run --rm -it -v $PWD/src:/src peterdavehello/azcopy:10.11.0 azcopy sync /src https://azcopydockertest.blob.core.windows.net/$$web\n```\n\nYou can also confirm its version by:\n\n```sh\n$ docker run --rm -it -v $PWD/src:/src peterdavehello/azcopy:10.11.0 azcopy --version\n\nUnable to find image 'peterdavehello/azcopy:10.11.0' locally\n10.11.0: Pulling from peterdavehello/azcopy\n540db60ca938: Already exists \n2bb029cc37b3: Pull complete \n0706491099ca: Pull complete \nDigest: sha256:bf339591009673060633cf95c3339e386a3d4e187e206da116547ac081a0b375\nStatus: Downloaded newer image for peterdavehello/azcopy:10.11.0\nazcopy version 10.11.0\n```\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fpeterdavehello%2Fdocker-azcopy","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fpeterdavehello%2Fdocker-azcopy","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fpeterdavehello%2Fdocker-azcopy/lists"}