Skip to main content

S3 Buckets

S3 Buckets

S3 Buckets allows you to store and retrieve your data easily. You can use any S3 compatible clients to communicate with our S3 buckets backend.

Create new buckets

  1. Go to console and visit the S3 Buckets page which can be found under Playground (top menu) and Training (side menu).
  2. Click on the Create button.
  3. Fill in the bucket details and click on the Create bucket button.

Upload objects

  1. Go to profile and get your S3 Access Key details
  2. Configure your S3 compatible tools accordingly.
    1. For endpoint, please use https://dl.bitdeer.ai .
  3. Upload the object into the bucket.

Example using mc

  1. Download the tool from Github.
  2. Run this command - mc cp <src> <alias>/<bucket name>/<dest>

Configure the ~/.mc/config.json file using this sample.

{
    "version": "10",
    "aliases": {
        "<alias>": {
            "url": "https://dl.bitdeer.ai",
            "accessKey": "<access key>",
            "secretKey": "<secret key>",
            "api": "S3v4",
            "path": "auto"
        }
    }
}