---
title: "Deploy Zenko CloudServer"
description: "A Zenko CloudServer S3 file storage instance"
category: "Storage"
url: https://railway.com/deploy/7JpuFX
---

# Deploy Zenko CloudServer

A Zenko CloudServer S3 file storage instance

**[Deploy Zenko CloudServer on Railway](https://railway.com/template/7JpuFX)**

- **Creator:** Sam's Projects
- **Category:** Storage
- **Total deploys:** 15

## Template content

### Zenko CloudServer https://zenko.readthedocs.io/en/2.7.2/_static/Zenko_logo.png

- **Image:** zenko/cloudserver:latest
- **Start command:** `/bin/bash -c "mkdir -p /mnt/data/localData && mkdir -p /mnt/data/localMetadata && exec ./docker-entrypoint.sh yarn start"`
- **Health check:** /_/healthcheck/deep
- **Public domain:** Yes

## Documentation

![zenko](https://github.com/scality/cloudserver/blob/development/9.0/res/scality-cloudserver-logo.png?raw=true$0)

# 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.
```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](https://s3-server.readthedocs.io/en/latest/DOCKER.html#environment-variables).

## Similar templates

- [Garage S3 Storage](https://railway.com/deploy/garage-s3-storage) — Ultra-light S3 server: fast, open-source, plug-and-play.
- [Redis](https://railway.com/deploy/redis-1) — Self Host Latest Redis with Railway
- [EasyImg](https://railway.com/deploy/easyimg) — Simple self-hostable Nuxt.js personal image hosting system.

Open this page in a browser: https://railway.com/deploy/7JpuFX
