From 815278e9181ad7b0a6c19d0c038faaa3520f6241 Mon Sep 17 00:00:00 2001 From: Slawomir Koszewski Date: Mon, 2 Mar 2026 06:45:36 +0100 Subject: [PATCH] feat: add docker-compose configuration for Azurite service --- compose.yaml | 13 +++++++++++++ 1 file changed, 13 insertions(+) create mode 100644 compose.yaml diff --git a/compose.yaml b/compose.yaml new file mode 100644 index 0000000..59f41b1 --- /dev/null +++ b/compose.yaml @@ -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