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
@@ -37,25 +36,25 @@ The container has to run with extended capabilities for network.
37
36
To set up Jool on local network with default well-known prefix `64:ff9b::/96`:
38
37
39
38
```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
41
40
```
42
41
43
42
To set up Jool on docker network `test` with custom prefix `2001:db8:1234::/96`:
44
43
45
44
```bash
46
-
docker run --cap-add=NET_ADMIN --network testwanderadock/jool --pool6=2001:db8:1234::/96
45
+
docker run --cap-add=NET_ADMIN --network testghcr.io/wandera/jool --pool6=2001:db8:1234::/96
47
46
```
48
47
49
48
To set up Jool on docker network `test` with custom IPv6 MTU `1420`:
50
49
51
50
```bash
52
-
docker run --cap-add=NET_ADMIN --network testwanderadock/jool --lowest-ipv6-mtu=1420
51
+
docker run --cap-add=NET_ADMIN --network testghcr.io/wandera/jool --lowest-ipv6-mtu=1420
53
52
```
54
53
55
54
If you ran Jool on top of your host network, you may need to cleanup:
56
55
57
56
```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
59
58
```
60
59
61
60
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:
72
71
spec:
73
72
initContainers:
74
73
- name: jool
75
-
image: wanderadock/jool:latest
74
+
image: ghcr.io/wandera/jool:latest
76
75
args:
77
76
- "--pool6=2001:db8:1234::/96"# use custom prefix
78
77
- "--lowest-ipv6-mtu=1420"# use custom IPv6 MTU
@@ -84,4 +83,4 @@ spec:
84
83
85
84
## Docker repository
86
85
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