Skip to content

Instantly share code, notes, and snippets.

@jackawatts
Created February 21, 2025 08:07
Show Gist options
  • Save jackawatts/afab05370f7cffb4ef78f0a90fdd84b8 to your computer and use it in GitHub Desktop.
Save jackawatts/afab05370f7cffb4ef78f0a90fdd84b8 to your computer and use it in GitHub Desktop.
Docker Azurite compose.yaml with --skipApiVersionCheck
name: <project_name>
services:
storage:
image: mcr.microsoft.com/azure-storage/azurite
container_name: <project_name>-azurite
command: "azurite -l /data --blobHost 0.0.0.0 --queueHost 0.0.0.0 --tableHost 0.0.0.0 --skipApiVersionCheck"
ports:
- 10000:10000
- 10001:10001
- 10002:10002
networks:
default:
name: <project_name>-net
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment