Skip to content

Commit 76e5e18

Browse files
Update Docker image references to drasyl-java in documentation
1 parent e96c036 commit 76e5e18

7 files changed

Lines changed: 25 additions & 25 deletions

File tree

docs/cli/intro.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -45,12 +45,12 @@ not work with native image).
4545

4646
## Docker
4747

48-
The [`drasyl/drasyl`](https://hub.docker.com/r/drasyl/drasyl) image provides the `drasyl` command to the host. So no need to install drasyl on your machine, you can just use this docker image.
48+
The [`drasyl/drasyl-java`](https://hub.docker.com/r/drasyl/drasyl-java) image provides the `drasyl` command to the host. So no need to install drasyl on your machine, you can just use this docker image.
4949

5050
For instance:
5151

5252
```bash
53-
$ docker run -i -t drasyl/drasyl version
53+
$ docker run -i -t drasyl/drasyl-java version
5454
- drasyl-cli.version 0.11.0 (76f9322)
5555
- drasyl-core.version 0.11.0 (76f9322)
5656
- drasyl-node.version 0.11.0 (76f9322)
@@ -67,12 +67,12 @@ $ docker run -i -t drasyl/drasyl version
6767
To run a node:
6868
```bash
6969
# generate an identity (this can take some time)
70-
$ docker run -i -t drasyl/drasyl generate-identity | grep -v "WARNING:" > drasyl.identity
70+
$ docker run -i -t drasyl/drasyl-java generate-identity | grep -v "WARNING:" > drasyl.identity
7171

7272
# start a node
7373
$ docker run -i -t -p 22527:22527 \
7474
-v $PWD/drasyl.identity:/drasyl.identity \
75-
drasyl/drasyl node
75+
drasyl/drasyl-java node
7676
```
7777

7878
This command passes the just generated identity to the docker container and then launch the `drasyl node` command.

docusaurus.config.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -105,7 +105,7 @@ const config = {
105105
},
106106
{
107107
label: 'Docker',
108-
href: 'https://hub.docker.com/r/drasyl/drasyl',
108+
href: 'https://hub.docker.com/r/drasyl/drasyl-java',
109109
},
110110
],
111111
},

versioned_docs/version-0.10/cli/intro.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -43,12 +43,12 @@ The environment variable JAVA_OPTS can be used to pass options to the JVM.
4343

4444
## Docker
4545

46-
The [`drasyl/drasyl`](https://hub.docker.com/r/drasyl/drasyl) image provides the `drasyl` command to the host. So no need to install drasyl on your machine, you can just use this docker image.
46+
The [`drasyl/drasyl-java`](https://hub.docker.com/r/drasyl/drasyl-java) image provides the `drasyl` command to the host. So no need to install drasyl on your machine, you can just use this docker image.
4747

4848
For instance:
4949

5050
```bash
51-
$ docker run -i -t drasyl/drasyl version
51+
$ docker run -i -t drasyl/drasyl-java version
5252
- drasyl-cli.version 0.8.0 (a773985)
5353
- drasyl-core.version 0.8.0 (a773985)
5454
- drasyl-node.version 0.8.0 (a773985)
@@ -63,12 +63,12 @@ $ docker run -i -t drasyl/drasyl version
6363
To run a node:
6464
```bash
6565
# generate an identity (this can take some time)
66-
$ docker run -i -t drasyl/drasyl generate-identity | grep -v "WARNING:" > drasyl.identity
66+
$ docker run -i -t drasyl/drasyl-java generate-identity | grep -v "WARNING:" > drasyl.identity
6767

6868
# start a node
6969
$ docker run -i -t -p 22527:22527 \
7070
-v $PWD/drasyl.identity:/drasyl.identity \
71-
drasyl/drasyl node
71+
drasyl/drasyl-java node
7272
```
7373

7474
This command passes the just generated identity to the docker container and then launch the `drasyl node` command.

versioned_docs/version-0.11/cli/intro.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -45,12 +45,12 @@ not work with native image).
4545

4646
## Docker
4747

48-
The [`drasyl/drasyl`](https://hub.docker.com/r/drasyl/drasyl) image provides the `drasyl` command to the host. So no need to install drasyl on your machine, you can just use this docker image.
48+
The [`drasyl/drasyl-java`](https://hub.docker.com/r/drasyl/drasyl-java) image provides the `drasyl` command to the host. So no need to install drasyl on your machine, you can just use this docker image.
4949

5050
For instance:
5151

5252
```bash
53-
$ docker run -i -t drasyl/drasyl version
53+
$ docker run -i -t drasyl/drasyl-java version
5454
- drasyl-cli.version 0.11.0 (76f9322)
5555
- drasyl-core.version 0.11.0 (76f9322)
5656
- drasyl-node.version 0.11.0 (76f9322)
@@ -67,12 +67,12 @@ $ docker run -i -t drasyl/drasyl version
6767
To run a node:
6868
```bash
6969
# generate an identity (this can take some time)
70-
$ docker run -i -t drasyl/drasyl generate-identity | grep -v "WARNING:" > drasyl.identity
70+
$ docker run -i -t drasyl/drasyl-java generate-identity | grep -v "WARNING:" > drasyl.identity
7171

7272
# start a node
7373
$ docker run -i -t -p 22527:22527 \
7474
-v $PWD/drasyl.identity:/drasyl.identity \
75-
drasyl/drasyl node
75+
drasyl/drasyl-java node
7676
```
7777

7878
This command passes the just generated identity to the docker container and then launch the `drasyl node` command.

versioned_docs/version-0.12/cli/intro.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -45,12 +45,12 @@ not work with native image).
4545

4646
## Docker
4747

48-
The [`drasyl/drasyl`](https://hub.docker.com/r/drasyl/drasyl) image provides the `drasyl` command to the host. So no need to install drasyl on your machine, you can just use this docker image.
48+
The [`drasyl/drasyl-java`](https://hub.docker.com/r/drasyl/drasyl-java) image provides the `drasyl` command to the host. So no need to install drasyl on your machine, you can just use this docker image.
4949

5050
For instance:
5151

5252
```bash
53-
$ docker run -i -t drasyl/drasyl version
53+
$ docker run -i -t drasyl/drasyl-java version
5454
- drasyl-cli.version 0.11.0 (76f9322)
5555
- drasyl-core.version 0.11.0 (76f9322)
5656
- drasyl-node.version 0.11.0 (76f9322)
@@ -67,12 +67,12 @@ $ docker run -i -t drasyl/drasyl version
6767
To run a node:
6868
```bash
6969
# generate an identity (this can take some time)
70-
$ docker run -i -t drasyl/drasyl generate-identity | grep -v "WARNING:" > drasyl.identity
70+
$ docker run -i -t drasyl/drasyl-java generate-identity | grep -v "WARNING:" > drasyl.identity
7171

7272
# start a node
7373
$ docker run -i -t -p 22527:22527 \
7474
-v $PWD/drasyl.identity:/drasyl.identity \
75-
drasyl/drasyl node
75+
drasyl/drasyl-java node
7676
```
7777

7878
This command passes the just generated identity to the docker container and then launch the `drasyl node` command.

versioned_docs/version-0.8/cli.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -43,12 +43,12 @@ The environment variable JAVA_OPTS can be used to pass options to the JVM.
4343

4444
## Docker
4545

46-
The [`drasyl/drasyl`](https://hub.docker.com/r/drasyl/drasyl) image provides the `drasyl` command to the host. So no need to install drasyl on your machine, you can just use this docker image.
46+
The [`drasyl/drasyl-java`](https://hub.docker.com/r/drasyl/drasyl-java) image provides the `drasyl` command to the host. So no need to install drasyl on your machine, you can just use this docker image.
4747

4848
For instance:
4949

5050
```bash
51-
$ docker run -i -t drasyl/drasyl version
51+
$ docker run -i -t drasyl/drasyl-java version
5252
- drasyl-cli.version 0.6.0 (01183ed)
5353
- drasyl-core.version 0.6.0 (01183ed)
5454
- drasyl-node.version 0.6.0 (01183ed)
@@ -63,12 +63,12 @@ $ docker run -i -t drasyl/drasyl version
6363
To run a node:
6464
```bash
6565
# generate an identity (this can take some time)
66-
$ docker run -i -t drasyl/drasyl generate-identity | grep -v "WARNING:" > drasyl.identity
66+
$ docker run -i -t drasyl/drasyl-java generate-identity | grep -v "WARNING:" > drasyl.identity
6767

6868
# start a node
6969
$ docker run -i -t -p 22527:22527 \
7070
-v $PWD/drasyl.identity:/drasyl.identity \
71-
drasyl/drasyl node
71+
drasyl/drasyl-java node
7272
```
7373

7474
This command passes the just generated identity to the docker container and then launch the `drasyl node` command.

versioned_docs/version-0.9/cli.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -43,12 +43,12 @@ The environment variable JAVA_OPTS can be used to pass options to the JVM.
4343

4444
## Docker
4545

46-
The [`drasyl/drasyl`](https://hub.docker.com/r/drasyl/drasyl) image provides the `drasyl` command. So no need to install drasyl on your machine.
46+
The [`drasyl/drasyl-java`](https://hub.docker.com/r/drasyl/drasyl-java) image provides the `drasyl` command. So no need to install drasyl on your machine.
4747

4848
For instance:
4949

5050
```bash
51-
$ docker run -i -t drasyl/drasyl version
51+
$ docker run -i -t drasyl/drasyl-java version
5252
- drasyl-cli.version 0.8.0 (a773985)
5353
- drasyl-core.version 0.8.0 (a773985)
5454
- drasyl-node.version 0.8.0 (a773985)
@@ -63,12 +63,12 @@ $ docker run -i -t drasyl/drasyl version
6363
To run a node:
6464
```bash
6565
# generate an identity (this can take some time)
66-
$ docker run -i -t drasyl/drasyl generate-identity | grep -v "WARNING:" > drasyl.identity
66+
$ docker run -i -t drasyl/drasyl-java generate-identity | grep -v "WARNING:" > drasyl.identity
6767

6868
# start a node
6969
$ docker run -i -t -p 22527:22527 \
7070
-v $PWD/drasyl.identity:/drasyl.identity \
71-
drasyl/drasyl node
71+
drasyl/drasyl-java node
7272
```
7373

7474
This command passes the just generated identity to the docker container and then launch the `drasyl node` command.

0 commit comments

Comments
 (0)