@@ -20,7 +20,7 @@ StoneWork images are publicly available and can be pulled, [as described here](h
2020## Run
2121To try out the StoneWork, we can simply run it as a Docker container:
2222```
23- $ docker run -d --rm --name stonework -e ETCD_CONFIG="" ghcr.io/pantheontech/stonework:22.10
23+ $ docker run -d --rm --name stonework -e ETCD_CONFIG="" ghcr.io/pantheontech/stonework:23.06
2424```
2525This will run a Docker container named * stonework* in the background.
2626
@@ -129,7 +129,7 @@ TAP Interface
129129
130130To create tap interface, we need to make the StoneWork container privileged, so running it as:
131131```
132- $ docker run -d --rm --name stonework --privileged -e ETCD_CONFIG="" ghcr.io/pantheontech/stonework:22.10
132+ $ docker run -d --rm --name stonework --privileged -e ETCD_CONFIG="" ghcr.io/pantheontech/stonework:23.06
133133```
134134
135135Then we will use the configuration as:
@@ -167,7 +167,7 @@ But this tap interface is present only inside our StoneWork container. What if w
167167
168168Then we need to use host network mode in our docker run one liner:
169169```
170- $ docker run -it --rm --name stonework --privileged --network="host" -e ETCD_CONFIG="" ghcr.io/pantheontech/stonework:22.10
170+ $ docker run -it --rm --name stonework --privileged --network="host" -e ETCD_CONFIG="" ghcr.io/pantheontech/stonework:23.06
171171```
172172For more details about tap interfaces and VPP, take a look [ at this example] [ tap-example ] .
173173
@@ -178,7 +178,7 @@ As our Docker run one-liner grows, it becomes better to use docker-compose, in t
178178
179179Lets rewrite the above mentioned docker run command, i.e.:
180180```
181- $ docker run -it --rm --name stonework --privileged --network="host" -e ETCD_CONFIG="" ghcr.io/pantheontech/stonework:22.10
181+ $ docker run -it --rm --name stonework --privileged --network="host" -e ETCD_CONFIG="" ghcr.io/pantheontech/stonework:23.06
182182```
183183into * docker-compose.yaml* :
184184```
@@ -187,7 +187,7 @@ version: '3.3'
187187services:
188188 stonework:
189189 container_name: stonework
190- image: "ghcr.io/pantheontech/stonework:22.10 "
190+ image: "ghcr.io/pantheontech/stonework:23.06 "
191191 privileged: true
192192 network_mode: "host"
193193 environment:
@@ -258,7 +258,7 @@ version: '3.3'
258258services:
259259 stonework:
260260 container_name: stonework
261- image: "ghcr.io/pantheontech/stonework:22.10 "
261+ image: "ghcr.io/pantheontech/stonework:23.06 "
262262 privileged: true
263263 network_mode: "host"
264264 environment:
@@ -435,7 +435,7 @@ volumes: # new
435435services:
436436 stonework:
437437 container_name: stonework
438- image: "ghcr.io/pantheontech/stonework:22.10 "
438+ image: "ghcr.io/pantheontech/stonework:23.06 "
439439 privileged: true
440440 network_mode: "host"
441441 environment:
0 commit comments