Skip to content

Commit cf40671

Browse files
committed
update
1 parent 4465a03 commit cf40671

File tree

2 files changed

+0
-36
lines changed

2 files changed

+0
-36
lines changed

app.config.ts

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,6 @@ export const VERSION_CONFIG = {
3232
LATEST: 'latest',
3333
STABLE: 'stable',
3434
ALPHA: 'alpha',
35-
NIGHTLY: 'nightly'
3635
} as const
3736

3837
// Download option key type

app/download/components/platforms/docker-download-section.tsx

Lines changed: 0 additions & 35 deletions
Original file line numberDiff line numberDiff line change
@@ -140,41 +140,6 @@ export default function DockerDownloadSection({ platform, release, className }:
140140
/>
141141
</div>
142142

143-
{/* Nightly Version */}
144-
<div className="space-y-4">
145-
<div className="flex items-center justify-between">
146-
<div>
147-
<h4 className="font-medium text-foreground">{'Daily Build'}</h4>
148-
<p className="text-sm text-muted-foreground">
149-
{'Architecture'}: nightly
150-
</p>
151-
</div>
152-
<a
153-
href="https://hub.docker.com/r/rustfs/rustfs/tags"
154-
target="_blank"
155-
rel="noopener noreferrer"
156-
className="inline-flex items-center space-x-2 px-4 py-2 bg-primary text-primary-foreground rounded-lg hover:bg-primary/90 transition-colors">
157-
<DownloadIcon className="w-4 h-4" />
158-
<span>{'Download'}</span>
159-
</a>
160-
</div>
161-
162-
<CodeBlock
163-
code={[
164-
"docker pull rustfs/rustfs:nightly",
165-
"docker run -d \\",
166-
" --name rustfs-nightly \\",
167-
" -p 9000:9000 \\",
168-
" -p 9001:9001 \\",
169-
" -v /data:/data \\",
170-
" rustfs/rustfs:nightly",
171-
]}
172-
title={'Installation Commands'}
173-
/>
174-
175-
<Note type="warning">
176-
{'Daily build - may contain experimental features'}
177-
</Note>
178143
</div>
179144
</div>
180145

0 commit comments

Comments
 (0)