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-20Lines changed: 20 additions & 20 deletions
Display the source diff
Display the rich diff
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.32.1
4
+
current-ipfs-version: v0.33.0
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.32.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.0/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.32.1
313
+
> ipfs version 0.33.0
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.32.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.0/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/install/server-infrastructure.md
+5-5Lines changed: 5 additions & 5 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -1,7 +1,7 @@
1
1
---
2
2
title: IPFS Cluster
3
3
description: IPFS Cluster provides data orchestration across a swarm of IPFS daemons by allocating, replicating, and tracking a global pin-set distributed among multiple peers. Learn how to install it here.
4
-
current-ipfs-cluster-version: v1.1.1
4
+
current-ipfs-cluster-version: v1.1.2
5
5
---
6
6
7
7
# Set up server infrastructure with IPFS Cluster
@@ -73,13 +73,13 @@ If you're having issues installing or using Docker or Docker-Compose, see the [o
73
73
1. Download the latest `ipfs-cluster-ctl` package from [dist.ipfs.tech](https://dist.ipfs.tech/#ipfs-cluster-ctl):
tar xvzf ipfs-cluster-ctl_v1.1.1_linux-amd64.tar.gz
82
+
tar xvzf ipfs-cluster-ctl_v1.1.2_linux-amd64.tar.gz
83
83
84
84
> ipfs-cluster-ctl/ipfs-cluster-ctl
85
85
> ipfs-cluster-ctl/LICENSE
@@ -88,10 +88,10 @@ If you're having issues installing or using Docker or Docker-Compose, see the [o
88
88
> ipfs-cluster-ctl/README.md
89
89
```
90
90
91
-
1. Download the [`docker-compose.yml` file](https://raw.githubusercontent.com/ipfs/ipfs-cluster/v1.1.1/docker-compose.yml) and place it into the `ipfs-cluster-ctl` directory:
91
+
1. Download the [`docker-compose.yml` file](https://raw.githubusercontent.com/ipfs/ipfs-cluster/v1.1.2/docker-compose.yml) and place it into the `ipfs-cluster-ctl` directory:
0 commit comments