Skip to content

Commit d4fbb37

Browse files
committed
Update README with current container registry
1 parent a5f5d33 commit d4fbb37

File tree

1 file changed

+8
-9
lines changed

1 file changed

+8
-9
lines changed

README.md

Lines changed: 8 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,5 @@
11
# jool-docker
22

3-
[![Docker Build Status](https://img.shields.io/docker/cloud/build/wanderadock/jool)](https://hub.docker.com/r/wanderadock/jool/)
43
[![GitHub release](https://img.shields.io/github/v/release/wandera/jool-docker)](https://github.com/wandera/jool-docker/releases/latest)
54
[![License: MIT](https://img.shields.io/badge/License-MIT-yellow.svg)](https://github.com/wandera/jool-docker/blob/master/LICENSE)
65

@@ -24,8 +23,8 @@ Example for Ubuntu 18.04:
2423

2524
```bash
2625
apt-get update
27-
wget https://github.com/NICMx/Jool/releases/download/v4.0.8/jool-dkms_4.0.8-1_all.deb -O /tmp/jool-dkms_4.0.8-1_all.deb
28-
apt install -y /tmp/jool-dkms_4.0.8-1_all.deb
26+
wget https://github.com/NICMx/Jool/releases/download/v4.1.11/jool-dkms_4.1.11-1_all.deb -O /tmp/jool-dkms_4.1.11-1_all.deb
27+
apt install -y /tmp/jool-dkms_4.1.11-1_all.deb
2928
modprobe jool
3029
modprobe ip6table_mangle
3130
```
@@ -37,25 +36,25 @@ The container has to run with extended capabilities for network.
3736
To set up Jool on local network with default well-known prefix `64:ff9b::/96`:
3837

3938
```bash
40-
docker run --cap-add=NET_ADMIN --network host wanderadock/jool
39+
docker run --cap-add=NET_ADMIN --network host ghcr.io/wandera/jool
4140
```
4241

4342
To set up Jool on docker network `test` with custom prefix `2001:db8:1234::/96`:
4443

4544
```bash
46-
docker run --cap-add=NET_ADMIN --network test wanderadock/jool --pool6=2001:db8:1234::/96
45+
docker run --cap-add=NET_ADMIN --network test ghcr.io/wandera/jool --pool6=2001:db8:1234::/96
4746
```
4847

4948
To set up Jool on docker network `test` with custom IPv6 MTU `1420`:
5049

5150
```bash
52-
docker run --cap-add=NET_ADMIN --network test wanderadock/jool --lowest-ipv6-mtu=1420
51+
docker run --cap-add=NET_ADMIN --network test ghcr.io/wandera/jool --lowest-ipv6-mtu=1420
5352
```
5453

5554
If you ran Jool on top of your host network, you may need to cleanup:
5655

5756
```bash
58-
docker run --cap-add=NET_ADMIN --network host --entrypoint /cleanup.sh wanderadock/jool
57+
docker run --cap-add=NET_ADMIN --network host --entrypoint /cleanup.sh ghcr.io/wandera/jool
5958
```
6059

6160
Otherwise all Jool instances get cleaned when network namespace is destroyed (usually when the {container/docker network/kubernetes pod} is destroyed).
@@ -72,7 +71,7 @@ metadata:
7271
spec:
7372
initContainers:
7473
- name: jool
75-
image: wanderadock/jool:latest
74+
image: ghcr.io/wandera/jool:latest
7675
args:
7776
- "--pool6=2001:db8:1234::/96" # use custom prefix
7877
- "--lowest-ipv6-mtu=1420" # use custom IPv6 MTU
@@ -84,4 +83,4 @@ spec:
8483

8584
## Docker repository
8685

87-
The tool is released as docker image, check the [repository](https://hub.docker.com/r/wanderadock/jool/).
86+
The tool is released as docker image, check the [repository](https://ghcr.io/wandera/jool).

0 commit comments

Comments
 (0)