Skip to content

Commit

Permalink
Added Docker Compose example
Browse files Browse the repository at this point in the history
  • Loading branch information
sebagomez committed Apr 1, 2024
1 parent 7332ba1 commit d5cfed4
Showing 1 changed file with 18 additions and 0 deletions.
18 changes: 18 additions & 0 deletions docker-compose/azurestorageexplorer.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
version: '3.8'

services:
azurite:
image: mcr.microsoft.com/azure-storage/azurite
ports:
- "10000:10000"
- "10001:10001"
- "10002:10002"

azurestorageexplorer:
image: azurestorageexplorer:local
ports:
- "8080:8080"
environment:
- AZURE_STORAGE_CONNECTIONSTRING=DefaultEndpointsProtocol=http;AccountName=devstoreaccount1;AccountKey=Eby8vdM02xNOcqFlqUwJPLlmEtlCDXJ1OUzFT50uSRZ6IFsuFq2UVErCz4I6tq/K1SZFPTOtr/KBHBeksoGMGw==;BlobEndpoint=http://azurite:10000/devstoreaccount1;QueueEndpoint=http://azurite:10001/devstoreaccount1;TableEndpoint=http://azurite:10002/devstoreaccount1;
depends_on:
- azurite

0 comments on commit d5cfed4

Please sign in to comment.