Show your support by giving us a star!

The open source successor to
Go_, done right.

Dosei is a developers-first container orchestration platform that makes deploying web applications simple, secure, portable and extensible.

Engineers at these companies love Dosei

    • Wix EngineeringNikeBoeing
    • VerizonSAPGlovo
#dosei.py

from dosei_sdk import Dosei

dosei = Dosei(
    name="hello-world",
    port=8000,
    run=f"uvicorn bot.main:app"
)

# Run it
$ dosei run

Dosei Service

Create a Dosei service and deploy in seconds

Learn more about Dosei Services
#dosei.py
            
from dosei_sdk import Dosei

dosei = Dosei()

@dosei.cron_job("0 0 * * *")
def hello_world():
  print("hello world!")

# Run it
$ dosei run dosei:hello_world

Dosei Cron Jobs

Easy local development, versioned and deployable with zero configuration.

Learn more about Dosei Cron Jobs