feat: add docker-compose configuration for Azurite service

This commit is contained in:
2026-03-02 06:45:36 +01:00
parent 58c31e73bf
commit 815278e918

13
compose.yaml Normal file
View File

@@ -0,0 +1,13 @@
services:
azurite:
image: docker.io/skoszewski/azurite:latest
container_name: azurite
command:
- --oauth
ports:
- "443:443"
env_file:
- $HOME/.azurite/accounts.env
volumes:
- $HOME/.azurite/storage:/storage
restart: unless-stopped