Skip to content

Latest commit

 

History

History
29 lines (23 loc) · 589 Bytes

README.md

File metadata and controls

29 lines (23 loc) · 589 Bytes

Storage Account tables seeding

Seeding tables to Storage account in the mcr.microsoft.com/azure-storage/azurite docker container.

How to use this Image

In the docker-compose.yml file:

version: '3.1'

services:
  storage:
    image: mcr.microsoft.com/azure-storage/azurite
    restart: on-failure
    ports:
    - 10001:10001 # blob storage
    - 10002:10002 # table storage

  storage-seed:
    build:
      context: ./storage-seed
      dockerfile: dockerfile
    environment:
      - TABLES=Table1,Table2
      - HOST_NAME=storage
    depends_on:
      - storage