Skip to content
This repository was archived by the owner on Jul 16, 2025. It is now read-only.

Commit 10f8ed7

Browse files
committed
chore: release 0.26.0
Signed-off-by: Toma Puljak <[email protected]>
1 parent 3d99d12 commit 10f8ed7

File tree

5 files changed

+613
-166
lines changed

5 files changed

+613
-166
lines changed

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
"name": "docs",
33
"license": "Apache-2.0",
44
"type": "module",
5-
"version": "0.25.0",
5+
"version": "0.26.0",
66
"scripts": {
77
"postinstall": "is-ci || husky",
88
"dev": "astro dev --host",

src/content/docs/installation/installation.mdx

Lines changed: 43 additions & 42 deletions
Original file line numberDiff line numberDiff line change
@@ -4,14 +4,15 @@ description: Learn how to install Daytona on Linux, macOS, and Windows.
44
sidebar:
55
label: Installation
66
---
7+
78
import Aside from '@components/Aside.astro'
89

9-
import Nix from "./method/nix.mdx";
10-
import Homebrew from "./method/homebrew.mdx";
11-
import ScriptUnix from "./method/script-unix.mdx";
12-
import UninstallUnix from "./method/uninstall-unix.mdx";
13-
import UninstallMacOS from "./method/uninstall-macos.mdx";
14-
import ScriptPowerShell from "./method/script-powershell.mdx";
10+
import Homebrew from './method/homebrew.mdx'
11+
import Nix from './method/nix.mdx'
12+
import ScriptPowerShell from './method/script-powershell.mdx'
13+
import ScriptUnix from './method/script-unix.mdx'
14+
import UninstallMacOS from './method/uninstall-macos.mdx'
15+
import UninstallUnix from './method/uninstall-unix.mdx'
1516

1617
You can install Daytona on [Linux](#linux), [macOS](#macos), and [Windows](#windows) systems.
1718
Each operating system supports both x86_64 and AArch64 architectures.
@@ -24,106 +25,106 @@ You can install Daytona on a modern Linux system.
2425
Daytona supports both x86_64 and AArch64 architectures.
2526
The following installation options are available on Linux:
2627

27-
* __[Official Installation Script](#official-installation-script)__
28-
The recommended method to install Daytona on Linux.
29-
This installation script is supported by Daytona's developers upstream.
30-
* __[Homebrew](#homebrew)__
31-
Install Daytona on Linux using the Homebrew package manager.
32-
* __[Nix](#nix)__
33-
Install Daytona on NixOS and other Linux systems with a working Nix installation.
28+
- **[Official Installation Script](#official-installation-script)**
29+
The recommended method to install Daytona on Linux.
30+
This installation script is supported by Daytona's developers upstream.
31+
- **[Homebrew](#homebrew)**
32+
Install Daytona on Linux using the Homebrew package manager.
33+
- **[Nix](#nix)**
34+
Install Daytona on NixOS and other Linux systems with a working Nix installation.
3435

3536
### Official Installation Script
3637

37-
<ScriptUnix/>
38+
<ScriptUnix />
3839

3940
<Aside type="note">
4041
You can install Daytona by manually downloading the binary and placing it in your `PATH`.
4142

4243
```shell
4344
# x86-64
44-
curl -sf -L https://download.daytona.io/daytona/v0.25/daytona-linux-amd64 -o daytona
45+
curl -sf -L https://download.daytona.io/daytona/v0.26/daytona-linux-amd64 -o daytona
4546
# AArch64
46-
curl -sf -L https://download.daytona.io/daytona/v0.25/daytona-linux-arm64 -o daytona
47+
curl -sf -L https://download.daytona.io/daytona/v0.26/daytona-linux-arm64 -o daytona
4748
```
4849

4950
</Aside>
5051

5152
#### Uninstall Daytona
5253

53-
<UninstallUnix/>
54+
<UninstallUnix />
5455

5556
### Homebrew
5657

57-
<Homebrew/>
58+
<Homebrew />
5859

5960
### Nix
6061

61-
<Nix/>
62-
#### Install Globally
63-
To permanently install Daytona on your system, you can add it to the relevant configuration.
62+
<Nix />
63+
#### Install Globally To permanently install Daytona on your system, you can add
64+
it to the relevant configuration.
6465

65-
* On NixOS systems, add `daytona-bin` as a system package in `/etc/nixos/configuration.nix`.
66-
* On other Linux systems, use [home-manager](https://github.com/nix-community/home-manager) and add `daytona-bin` as a local package.
66+
- On NixOS systems, add `daytona-bin` as a system package in `/etc/nixos/configuration.nix`.
67+
- On other Linux systems, use [home-manager](https://github.com/nix-community/home-manager) and add `daytona-bin` as a local package.
6768

6869
## macOS
6970

7071
You can install Daytona on a modern macOS system.
7172
Daytona supports both x86_64 (Intel-based) and AArch64 (Apple Silicon) architectures.
7273
The following installation options are available on macOS:
7374

74-
* __[Official Installation Script](#official-installation-script-1)__
75-
The recommended method to install Daytona on macOS.
76-
This installation script is supported by Daytona's developers upstream.
77-
* __[Homebrew](#homebrew-1)__
78-
Install Daytona on macOS using the Homebrew package manager.
79-
* __[Nix](#nix-1)__
80-
Install Daytona on macOS using nix-darwin or home-manager.
75+
- **[Official Installation Script](#official-installation-script-1)**
76+
The recommended method to install Daytona on macOS.
77+
This installation script is supported by Daytona's developers upstream.
78+
- **[Homebrew](#homebrew-1)**
79+
Install Daytona on macOS using the Homebrew package manager.
80+
- **[Nix](#nix-1)**
81+
Install Daytona on macOS using nix-darwin or home-manager.
8182

8283
### Official Installation Script
8384

84-
<ScriptUnix/>
85+
<ScriptUnix />
8586

8687
<Aside type="note">
8788
You can install Daytona by manually downloading the binary and placing it in your `PATH`.
8889

8990
```shell
9091
# x86-64/Intel-based
91-
curl -sf -L https://download.daytona.io/daytona/v0.25/daytona-darwin-amd64 -o daytona
92+
curl -sf -L https://download.daytona.io/daytona/v0.26/daytona-darwin-amd64 -o daytona
9293
# AArch64/Apple Silicon
93-
curl -sf -L https://download.daytona.io/daytona/v0.25/daytona-darwin-arm64 -o daytona
94+
curl -sf -L https://download.daytona.io/daytona/v0.26/daytona-darwin-arm64 -o daytona
9495
```
9596

9697
</Aside>
9798

9899
#### Uninstall Daytona
99100

100-
<UninstallMacOS/>
101+
<UninstallMacOS />
101102

102103
### Homebrew
103104

104-
<Homebrew/>
105+
<Homebrew />
105106

106107
### Nix
107108

108-
<Nix/>
109+
<Nix />
109110

110111
#### Install Globally
111112

112113
To permanently install Daytona on your system, you can add it to the relevant configuration.
113114

114-
* If you're using [nix-darwin](https://github.com/LnL7/nix-darwin), add `daytona-bin` as a system package.
115-
* If you're using [home-manager](https://github.com/nix-community/home-manager), add `daytona-bin` as a local package.
115+
- If you're using [nix-darwin](https://github.com/LnL7/nix-darwin), add `daytona-bin` as a system package.
116+
- If you're using [home-manager](https://github.com/nix-community/home-manager), add `daytona-bin` as a local package.
116117

117118
## Windows
118119

119120
You can install Daytona on a modern Windows system.
120121
Daytona supports both x86_64 and AArch64 architectures.
121122
The following installation options are available on Windows:
122123

123-
* __[Official Installation Script](#official-installation-script-2)__
124-
The recommended method to install Daytona on Windows.
125-
This installation script is supported by Daytona's developers upstream.
124+
- **[Official Installation Script](#official-installation-script-2)**
125+
The recommended method to install Daytona on Windows.
126+
This installation script is supported by Daytona's developers upstream.
126127

127128
### Official Installation Script
128129

129-
<ScriptPowerShell/>
130+
<ScriptPowerShell />
Lines changed: 13 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -1,27 +1,29 @@
11
---
22
title: PowerShell Installation
33
---
4-
import Aside from "@components/Aside.astro";
5-
export const partial = true;
4+
5+
import Aside from '@components/Aside.astro'
6+
7+
export const partial = true
68

79
1. Run the following command in PowerShell:
810

9-
```powershell
10-
$architecture = if ($env:PROCESSOR_ARCHITECTURE -eq "AMD64") { "amd64" } else { "arm64" }
11-
md -Force "$Env:APPDATA\bin\daytona"; [System.Net.ServicePointManager]::SecurityProtocol = [System.Net.SecurityProtocolType]'Tls,Tls11,Tls12';
12-
Invoke-WebRequest -URI "https://download.daytona.io/daytona/v0.25/daytona-windows-$architecture.exe" -OutFile "$Env:APPDATA\bin\daytona\daytona.exe";
13-
$env:Path += ";" + $Env:APPDATA + "\bin\daytona"; [Environment]::SetEnvironmentVariable("Path", $env:Path, [System.EnvironmentVariableTarget]::User);
14-
daytona serve;
15-
```
11+
```powershell
12+
$architecture = if ($env:PROCESSOR_ARCHITECTURE -eq "AMD64") { "amd64" } else { "arm64" }
13+
md -Force "$Env:APPDATA\bin\daytona"; [System.Net.ServicePointManager]::SecurityProtocol = [System.Net.SecurityProtocolType]'Tls,Tls11,Tls12';
14+
Invoke-WebRequest -URI "https://download.daytona.io/daytona/v0.26/daytona-windows-$architecture.exe" -OutFile "$Env:APPDATA\bin\daytona\daytona.exe";
15+
$env:Path += ";" + $Env:APPDATA + "\bin\daytona"; [Environment]::SetEnvironmentVariable("Path", $env:Path, [System.EnvironmentVariableTarget]::User);
16+
daytona serve;
17+
```
1618

1719
<Aside type="note">
1820
You can install Daytona by manually downloading the binary and placing it in your `PATH`.
1921

2022
```powershell
2123
# x86-64
22-
curl -sf -L https://download.daytona.io/daytona/v0.25/daytona-windows-amd64.exe -o daytona
24+
curl -sf -L https://download.daytona.io/daytona/v0.26/daytona-windows-amd64.exe -o daytona
2325
# AArch64
24-
curl -sf -L https://download.daytona.io/daytona/v0.25/daytona-windows-arm64.exe -o daytona
26+
curl -sf -L https://download.daytona.io/daytona/v0.26/daytona-windows-arm64.exe -o daytona
2527
```
2628

2729
</Aside>

0 commit comments

Comments
 (0)