Created
February 21, 2025 08:07
-
-
Save jackawatts/afab05370f7cffb4ef78f0a90fdd84b8 to your computer and use it in GitHub Desktop.
Docker Azurite compose.yaml with --skipApiVersionCheck
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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