
Zenko CloudServer
A Zenko CloudServer S3 file storage instance
Zenko CloudServer
zenko/cloudserver:latest
Just deployed
/mnt/data
Zenko CloudServer
An open-source Amazon S3-compatible object storage server.
CloudServer is useful for Developers, either to run as part of a continous integration test environment to emulate the AWS S3 service locally or as an abstraction layer to develop object storage enabled application on the go.
Note: This template does not provide a default bucket. You will be required to create one manually.
Variables
SCALITY_ACCESS_KEY_ID
- The username or access key to be used for authentication.
SCALITY_SECRET_ACCESS_KEY
- The secret key to be used for authentication.
Example Bucket Creation Script
The following is an example of how you would create a bucket using Python.
import boto3
s3 = boto3.client(
's3',
endpoint_url='',
aws_access_key_id='',
aws_secret_access_key=''
)
s3.create_bucket(Bucket='mybucket')
For additional configuration, view the variables available for Zenko CloudServer on their official documentation.
Template Content
Zenko CloudServer
zenko/cloudserver:latest