Documentation · Report Bug · Request Feature · Join Our Slack · Connect On X
For detailed/manual setup steps click here
curl -sfL get.daytona.io | sudo bash && daytona server -y && daytona
powershell -Command "irm https://get.daytona.io/windows | iex; daytona serve"
daytona create
Start coding.
- Quick Setup: Activate a fully configured development environment with a single command -
daytona create
. - Runs everywhere: Spin up your development environment on any machine; local, remote, cloud-based, physical server or a VM & on any architecture; x86 or ARM.
- Various Providers Support: Choose popular providers like AWS, GCP, Azure, DigitalOcean & more or use Docker on bare metal.
- IDE Support : Seamlessly supports VS Code, JetBrains products and more, ready to use without configuration. Also includes a built-in Web IDE for convenience.
- Git Provider Integration: GitHub, GitLab, Bitbucket and other Git providers can be connected allowing you to start working on a specific branch or PR and to push changes immediately.
- Configuration File Support: Support for dev container and an upcoming expansion to DevFile, Nix & Flox.
- Prebuilds System: Drastically improve environment build times by prebuilding them based on Git Providers' hook events.
- Reverse Proxy Integration: Enable collaboration and streamline feedback loops by leveraging our reverse proxy. Access preview ports and the Web IDE seamlessly, even behind firewalls.
- Security: Automatically creates a VPN connection between the client machine and the development environment, ensuring a fully secure connection.
- Works on my Machine: Never experience it again.
*For a complete feature set including Authentication, Authorization, Observability, Resource Management and IDP, check out our enterprise offering.
Before starting the installation script, if developing locally, ensure Docker is installed and running.
To initialize Daytona, follow these steps:
1. Start the Daytona Server:
Use this command to initiate the Daytona Server in daemon mode or use daytona serve
to run it in the foreground:
daytona server
2. Register Your Git Provider of Choice: Daytona supports GitHub, GitLab, Bitbucket and more Git Providers. Use this command to set them up:
daytona git-provider create
3. Create Your First Target: (optional) By default, Daytona uses the Docker provider to spin up environments on your local machine. For remote development environment setups, use the following command:
daytona target create
4. Choose Your IDE: The default IDE for Daytona is the local VS Code installation. To switch to the Web IDE or any other IDE, use:
daytona ide
Now that you have installed and initialized Daytona, you may proceed to setting up your development environments and starting to code instantly.
4. Create Your First Daytona Development Environment:
Creating development environments with Daytona is a straightforward process accomplished with just one command which prompts you for two things:
- Choose the target/provider to decide where to create the dev environment.
- Select or type in the Git repository you wish to start off with.
After making your selections, press enter, and Daytona will handle the rest.
daytona create
*You can add the --no-ide
flag to skip opening the IDE and then use daytona code
once you're ready to start coding. More info here.
5. Manage the Daytona Server daemon:
daytona server [start|stop|restart]
Daytona is designed to be infrastructure-agnostic, capable of creating and managing development environments across various platforms. Providers are the components that encapsulate the logic for provisioning compute resources on a specific platform. They allow for the configuration of different target configurations thus enabling, for instance, multiple AWS profiles within an AWS provider.
How does it work? When executing the daytona create
command, Daytona communicates the environment details to the selected provider, which then provisions the necessary compute resources. Once provisioned, Daytona sets up the environment on these resources, allowing the user to interact with the environment seamlessly.
Providers are independent projects that adhere to the Daytona Provider interface. View all currently supported providers here.
Daytona is Open Source under the Apache License 2.0, and is the copyright of its contributors. If you would like to contribute to the software, read the Developer Certificate of Origin Version 1.1 (https://developercertificate.org/). Afterwards, navigate to the contributing guide to get started.