You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardexpand all lines: docs/install/command-line.md
+20-20
Original file line number
Diff line number
Diff line change
@@ -1,7 +1,7 @@
1
1
---
2
2
title: Kubo
3
3
description: Using IPFS Kubo through the command-line allows you to do everything that IPFS Desktop can do, but at a more granular level, since you can specify which commands to run. Learn how to install it here.
4
-
current-ipfs-version: v0.33.1
4
+
current-ipfs-version: v0.33.2
5
5
---
6
6
7
7
# Install IPFS Kubo
@@ -31,7 +31,7 @@ Kubo runs on most Windows, MacOS, Linux, FreeBSD and OpenBSD systems that meet t
31
31
32
32
Note the following:
33
33
- The amount of disk space your IPFS installation uses depends on how much data you're sharing. A base installation uses around 12MB of disk space.
34
-
- You can enable automatic garbage collection via [--enable-gc](../reference/kubo/cli.md#ipfs-daemon) and adjust using [default maximum disk storage](https://github.com/ipfs/kubo/blob/v0.33.1/docs/config.md#datastorestoragemax) for data retrieved from other peers.
34
+
- You can enable automatic garbage collection via [--enable-gc](../reference/kubo/cli.md#ipfs-daemon) and adjust using [default maximum disk storage](https://github.com/ipfs/kubo/blob/v0.33.2/docs/config.md#datastorestoragemax) for data retrieved from other peers.
35
35
36
36
37
37
<!-- TODO: hide this footgun until https://github.com/ipfs/kubo/pull/10524 is merged and released in stable kubo
@@ -76,27 +76,27 @@ For installation instructions for your operating system, select the appropriate
76
76
1. Download the Windows binary from [`dist.ipfs.tech`](https://dist.ipfs.tech/#kubo).
@@ -310,7 +310,7 @@ For installation instructions for your operating system, select the appropriate
310
310
```bash
311
311
ipfs --version
312
312
313
-
> ipfs version 0.33.1
313
+
> ipfs version 0.33.2
314
314
```
315
315
316
316
:::
@@ -322,7 +322,7 @@ For installation instructions for your operating system, select the appropriate
322
322
323
323
## Build Kubo from source
324
324
325
-
For the current instructions on how to manually download, compile and build Kubo from source, see the [Build from Source](https://github.com/ipfs/kubo/blob/v0.33.1/README.md#build-from-source) section in the Kubo repository.
325
+
For the current instructions on how to manually download, compile and build Kubo from source, see the [Build from Source](https://github.com/ipfs/kubo/blob/v0.33.2/README.md#build-from-source) section in the Kubo repository.
326
326
327
327
## Determining which node to use with the command line
::: danger NEVER EXPOSE THE RPC API TO THE PUBLIC INTERNET
@@ -71,7 +71,7 @@ You can run Kubo IPFS inside Docker to simplify your deployment processes, as we
71
71
When starting a container running ipfs for the first time with an empty data directory, it will call `ipfs init` to initialize configuration files and generate a new keypair. At this time, you can choose which profile to apply using the `IPFS_PROFILE` environment variable:
It is possible to initialize the container with a swarm key file (`/data/ipfs/swarm.key`) using the variables `IPFS_SWARM_KEY` and `IPFS_SWARM_KEY_FILE`. The `IPFS_SWARM_KEY` creates `swarm.key` with the contents of the variable itself, while`IPFS_SWARM_KEY_FILE` copies the key from a path stored in the variable. The `IPFS_SWARM_KEY_FILE`**overwrites** the key generated by `IPFS_SWARM_KEY`.
Copy file name to clipboardexpand all lines: docs/reference/kubo/cli.md
+40-40
Original file line number
Diff line number
Diff line change
@@ -5,8 +5,8 @@ description: API documentation for the Kubo command-line executable.
5
5
6
6
# Kubo command-line
7
7
8
-
::: tip Generated on 2025-02-04 22:02:31, from kubo 0.33.1
9
-
This document was autogenerated from CLI help text in [kubo 0.33.1](https://github.com/ipfs/kubo/releases/tag/v0.33.1)
8
+
::: tip Generated on 2025-02-14 01:39:37, from kubo 0.33.2
9
+
This document was autogenerated from CLI help text in [kubo 0.33.2](https://github.com/ipfs/kubo/releases/tag/v0.33.2)
10
10
For issues and support, check out the [generate-cli-docs.sh](https://github.com/ipfs/ipfs-docs/blob/main/docs/reference/kubo/generate-cli-docs.sh) script on GitHub.
11
11
:::
12
12
@@ -1092,14 +1092,9 @@ SYNOPSIS
1092
1092
DESCRIPTION
1093
1093
1094
1094
Available profiles:
1095
-
'local-discovery':
1096
-
Sets default values to fields affected by the server
1097
-
profile, enables discovery in local networks.
1098
1095
'test':
1099
1096
Reduces external interference of IPFS daemon, this
1100
1097
is useful when using the daemon in test environments.
1101
-
'announce-on':
1102
-
Re-enables Reprovide system (reverts announce-off profile).
1103
1098
'flatfs':
1104
1099
Configures the node to use the flatfs datastore.
1105
1100
@@ -1120,27 +1115,6 @@ DESCRIPTION
1120
1115
NOTE: This profile may only be applied when first initializing node at IPFS_PATH
1121
1116
via 'ipfs init --profile flatfs'
1122
1117
1123
-
'pebbleds':
1124
-
Configures the node to use the pebble high-performance datastore.
1125
-
1126
-
Pebble is a LevelDB/RocksDB inspired key-value store focused on performance
1127
-
and internal usage by CockroachDB.
1128
-
You should use this datastore if:
1129
-
1130
-
- You need a datastore that is focused on performance.
1131
-
- You need reliability by default, but may choose to disable WAL for maximum performance when reliability is not critical.
1132
-
- This datastore is good for multi-terabyte data sets.
1133
-
- May benefit from tuning depending on read/write patterns and throughput.
1134
-
- Performance is helped significantly by running on a system with plenty of memory.
0 commit comments