Sign inSign up

siocode/local-object-storage

By siocode

•Updated over 1 year ago

A simple Large Object Storage (like S3 / GCS) service for testing.

Image
Integration & delivery
Developer tools
0

1.3K

siocode/local-object-storage repository overview

⁠Local Object Storage

A minimal, local object storage service for development and testing.
Supports S3-like operations, bucket management, and object metadata handling.

For full documentation, visit:
šŸ‘‰ github.com/SIOCODE-Open/local-object-storage⁠


⁠🐳 Quick Usage

⁠Run directly:
docker run -it --rm -p 8080:8080 \
  -v $(pwd)/local-object-storage.config.yaml:/config.yaml:ro \
  siocode/local-object-storage
⁠With Docker Compose:
version: "3.9"
services:
  storage:
    image: siocode/local-object-storage
    ports:
      - "8080:8080"
    volumes:
      - ./example/local-object-storage.config.yaml:/config.yaml:ro
      - storagedata:/data
volumes:
  storagedata: {}

Start it with:

docker compose up

Supports linux/amd64 and linux/arm64.

License: MIT.

Created by SIOCODE LLC.

Tag summary

Content type

Image

Digest

sha256:486a703d3…

Size

5.4 MB

Last updated

over 1 year ago

docker pull siocode/local-object-storage