{"id":21385355,"url":"https://github.com/touchifyapp/docker-azurite","last_synced_at":"2026-03-19T20:09:14.821Z","repository":{"id":51759979,"uuid":"200752212","full_name":"touchifyapp/docker-azurite","owner":"touchifyapp","description":"Docker image for Azurite 2.7+","archived":false,"fork":false,"pushed_at":"2022-12-11T00:54:37.000Z","size":95,"stargazers_count":0,"open_issues_count":3,"forks_count":0,"subscribers_count":3,"default_branch":"master","last_synced_at":"2025-01-22T23:42:17.102Z","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":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/touchifyapp.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}},"created_at":"2019-08-06T01:14:34.000Z","updated_at":"2020-08-26T10:17:44.000Z","dependencies_parsed_at":"2023-01-26T13:16:42.490Z","dependency_job_id":null,"html_url":"https://github.com/touchifyapp/docker-azurite","commit_stats":null,"previous_names":[],"tags_count":2,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/touchifyapp%2Fdocker-azurite","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/touchifyapp%2Fdocker-azurite/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/touchifyapp%2Fdocker-azurite/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/touchifyapp%2Fdocker-azurite/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/touchifyapp","download_url":"https://codeload.github.com/touchifyapp/docker-azurite/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":243864626,"owners_count":20360355,"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":[],"created_at":"2024-11-22T11:47:00.655Z","updated_at":"2025-10-04T00:05:24.410Z","avatar_url":"https://github.com/touchifyapp.png","language":"Dockerfile","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Supported tags and respective Dockerfile links\n\n*  [`2.7.1`, `2.7`, `2`, `latest` (Dockerfile)](https://github.com/touchifyapp/docker-azurite/blob/master/Dockerfile)\n\nThis image is updated via [pull requests to the `touchifyapp/docker-azurite` GitHub repo](https://github.com/touchifyapp/docker-azurite/pulls).\n\n# [Azurite](https://github.com/Azure/Azurite/tree/legacy-master): A lightweight server clone of Azure Blob, Queue, and Table Storage that simulates most of the commands supported by it with minimal dependencies.\n\n![Azurite Logo](https://raw.githubusercontent.com/Azure/Azurite/master/icon.png)\n\n`Azurite` is a lightweight server clone of Azure Blob, Queue, and Table Storage that simulates most of the commands supported by it with minimal dependencies.\n\n## Important note\n\n**This image is meant to contains Azurite V2. For Azurite V3, please use this image: https://hub.docker.com/_/microsoft-azure-storage-azurite**\n\n## How to use\n\n### Basic Usage\n\nThe following case run the default configuration with Blob, Queue and Table Storage servers.\n\n```bash\ndocker run -dt \\\n  --name azurite \\\n  -p 10000:10000 \\\n  -p 10001:10001 \\\n  -p 10002:10002 \\\n  -v $(PWD):/data \\\n  touchify/azurite\n```\n\n### Start only a specific server\n\nYou can run only Blob, Queue or Table Storage server by specifying a custom command.\n\n```bash\n# Run only Blob server\ndocker run -dt --name azurite -p 10000:10000 -v $(PWD):/data touchify/azurite npm run blob\n\n# Run only Queue server\ndocker run -dt --name azurite -p 10001:10001 -v $(PWD):/data touchify/azurite npm run queue\n\n# Run only Table server\ndocker run -dt --name azurite -p 10002:10002 -v $(PWD):/data touchify/azurite npm run table\n```\n\n### Connection strings\n\nFull connection string:\n```\nDefaultEndpointsProtocol=http;AccountName=devstoreaccount1;AccountKey=Eby8vdM02xNOcqFlqUwJPLlmEtlCDXJ1OUzFT50uSRZ6IFsuFq2UVErCz4I6tq/K1SZFPTOtr/KBHBeksoGMGw==;BlobEndpoint=http://127.0.0.1:10000/devstoreaccount1;QueueEndpoint=http://127.0.0.1:10001/devstoreaccount1;TableEndpoint=http://127.0.0.1:10002/devstoreaccount1;\n```\n\nBlob-only connection-string:\n```\nDefaultEndpointsProtocol=http;AccountName=devstoreaccount1;AccountKey=Eby8vdM02xNOcqFlqUwJPLlmEtlCDXJ1OUzFT50uSRZ6IFsuFq2UVErCz4I6tq/K1SZFPTOtr/KBHBeksoGMGw==;BlobEndpoint=http://127.0.0.1:10000/devstoreaccount1;\n```\n\nQueue-Only connection string:\n```\nDefaultEndpointsProtocol=http;AccountName=devstoreaccount1;AccountKey=Eby8vdM02xNOcqFlqUwJPLlmEtlCDXJ1OUzFT50uSRZ6IFsuFq2UVErCz4I6tq/K1SZFPTOtr/KBHBeksoGMGw==;QueueEndpoint=http://127.0.0.1:10001/devstoreaccount1;\n```\n\nTable-only connection string:\n```\nDefaultEndpointsProtocol=http;AccountName=devstoreaccount1;AccountKey=Eby8vdM02xNOcqFlqUwJPLlmEtlCDXJ1OUzFT50uSRZ6IFsuFq2UVErCz4I6tq/K1SZFPTOtr/KBHBeksoGMGw==;TableEndpoint=http://127.0.0.1:10002/devstoreaccount1;\n```\n\n## License\n\nView [license information](https://github.com/touchifyapp/docker-azurite/blob/master/LICENSE) for the software contained in this image.\n\n## Supported Docker versions\n\nThis image is officially supported on Docker version 1.12+.\n\nPlease see [the Docker installation documentation](https://docs.docker.com/installation/) for details on how to upgrade your Docker daemon.\n\n## User Feedback\n\n### Documentation\n\nDocumentation for this image is stored in [the `touchifyapp/docker-azurite` GitHub repo](https://github.com/touchifyapp/docker-azurite).\nBe sure to familiarize yourself with the repository's README.md file before attempting a pull request.\n\n### Issues\n\nIf you have any problems with or questions about this image, please contact us through a [GitHub issue](https://github.com/touchifyapp/docker-azurite/issues).\n\n### Contributing\n\nYou are invited to contribute new features, fixes, or updates, large or small; we are always thrilled to receive pull requests, and do our best to process them as fast as we can.\n\nBefore you start to code, we recommend discussing your plans through a [GitHub issue](https://github.com/touchifyapp/docker-azurite/issues), especially for more ambitious contributions. This gives other contributors a chance to point you in the right direction, give you feedback on your design, and help you find out if someone else is working on the same thing.","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Ftouchifyapp%2Fdocker-azurite","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Ftouchifyapp%2Fdocker-azurite","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Ftouchifyapp%2Fdocker-azurite/lists"}