@@ -48,28 +48,32 @@ suites:
48
48
- recipe[hello_dokken::default]
49
49
` ` `
50
50
51
+ ## Podman usage
52
+
53
+ For specific podman guidance please see [the podman documentation](documentation/PODMAN.md).
54
+
51
55
## How it works
52
56
53
57
### Primordial State
54
58
55
59
#### List kitchen suites
56
60
57
61
` ` ` shell
58
- laptop:~/src/chef-cookbooks/hello_dokken $ kitchen list
62
+ $ kitchen list
59
63
Instance Driver Provisioner Verifier Transport Last Action Last Error
60
64
```
61
65
62
66
#### List containers
63
67
64
68
``` shell
65
- laptop: ~ /src/chef-cookbooks/hello_dokken $ docker ps -a
69
+ $ docker ps -a
66
70
CONTAINER ID IMAGE COMMAND CREATED STATUS PORTS NAMES
67
71
```
68
72
69
73
#### List images
70
74
71
75
``` shell
72
- laptop: ~ /src/chef-cookbooks/hello_dokken $ docker images
76
+ $ docker images
73
77
REPOSITORY TAG IMAGE ID CREATED VIRTUAL SIZE
74
78
```
75
79
@@ -78,7 +82,7 @@ REPOSITORY TAG IMAGE ID CREATED
78
82
#### kitchen create
79
83
80
84
``` shell
81
- laptop: ~ /src/chef-cookbooks/hello_dokken $ kitchen create
85
+ $ kitchen create
82
86
-----> Starting Kitchen (v1.15.0)
83
87
-----> Creating < default-centos-7> ...
84
88
Creating local sandbox at /Users/someara/.dokken/sandbox/6e1b03ab46-default-centos-7
@@ -100,7 +104,7 @@ Finally, the driver pulls the image specified by the suite's platform section an
100
104
#### List containers
101
105
102
106
``` shell
103
- laptop: ~ /src/chef-cookbooks/hello_dokken $ docker ps -a
107
+ $ docker ps -a
104
108
CONTAINER ID IMAGE COMMAND CREATED STATUS PORTS NAMES
105
109
3489588d4470 6e1b03ab46-default-centos-7:latest " sh -c 'trap exit ..." About a minute ago Up About a minute 6e1b03ab46-default-centos-7
106
110
f678882b1575 chef/chef:current " true" About a minute ago Created chef-current
@@ -109,7 +113,7 @@ f678882b1575 chef/chef:current "true"
109
113
#### List images
110
114
111
115
``` shell
112
- laptop: ~ /src/chef-cookbooks/hello_dokken $ docker images
116
+ $ docker images
113
117
REPOSITORY TAG IMAGE ID CREATED SIZE
114
118
6e1b03ab46-default-centos-7 latest 2ea1040b9c10 About a minute ago 192 MB
115
119
chef/chef current 01ec788610e2 6 days ago 124 MB
@@ -121,7 +125,7 @@ centos 7 67591570dd29 7 weeks ag
121
125
#### kitchen converge
122
126
123
127
``` shell
124
- laptop: ~ /src/chef-cookbooks/hello_dokken $ time kitchen converge
128
+ $ time kitchen converge
125
129
-----> Starting Kitchen (v1.15.0)
126
130
-----> Converging < default-centos-7> ...
127
131
Creating local sandbox in /Users/someara/.dokken/sandbox/6e1b03ab46-default-centos-7
@@ -166,7 +170,7 @@ The `kitchen-converge` phase of the kitchen run uses the provisioner to upload c
166
170
#### List containers
167
171
168
172
``` shell
169
- laptop: ~ /src/chef-cookbooks/hello_dokken $ docker ps -a
173
+ $ docker ps -a
170
174
CONTAINER ID IMAGE COMMAND CREATED STATUS PORTS NAMES
171
175
c153dfd8e53d e9fa5d3a0d0e " sh -c 'trap exit 0 S" 9 minutes ago Up 9 minutes default-centos-7
172
176
32c42fba4a8c someara/kitchen-cache:latest " /usr/sbin/sshd -D -p" 9 minutes ago Up 9 minutes 0.0.0.0:32846-> 22/tcp default-centos-7-data
@@ -176,7 +180,7 @@ c153dfd8e53d e9fa5d3a0d0e "sh -c 'trap exit 0 S" 9 mi
176
180
#### List images
177
181
178
182
``` shell
179
- laptop: ~ /src/chef-cookbooks/hello_dokken $ docker images
183
+ $ docker images
180
184
REPOSITORY TAG IMAGE ID CREATED VIRTUAL SIZE
181
185
default-centos-7 latest ec1d208d77cd 8 minutes ago 172.3 MB
182
186
someara/kitchen-cache latest abbdb063dff1 2 weeks ago 300.8 MB
@@ -187,7 +191,7 @@ centos 7 e9fa5d3a0d0e 6 weeks ago
187
191
#### Diff container
188
192
189
193
``` shell
190
- laptop: ~ /src/chef-cookbooks/hello_dokken $ docker diff default-centos-7
194
+ $ docker diff default-centos-7
191
195
A /hello
192
196
C /opt
193
197
A /opt/chef
@@ -207,7 +211,7 @@ C /var/lib/rpm/__db.003
207
211
#### kitchen verify
208
212
209
213
``` shell
210
- laptop: ~ /src/chef-cookbooks/hello_dokken $ time kitchen verify
214
+ $ time kitchen verify
211
215
-----> Starting Kitchen (v1.15.0)
212
216
-----> Setting up < default-centos-7> ...
213
217
Finished setting up < default-centos-7> (0m0.00s).
@@ -237,7 +241,7 @@ The `kitchen-verify` phase uses the transport to run acceptance tests, verifying
237
241
#### List containers
238
242
239
243
``` shell
240
- laptop: ~ /src/chef-cookbooks/hello_dokken $ docker ps -a
244
+ $ docker ps -a
241
245
CONTAINER ID IMAGE COMMAND CREATED STATUS PORTS NAMES
242
246
84def4c49ce3 6e1b03ab46-default-centos-7:latest " sh -c 'trap exit ..." 6 minutes ago Up 6 minutes 6e1b03ab46-default-centos-7
243
247
f678882b1575 chef/chef:current " true" 9 minutes ago Created chef-current
@@ -246,7 +250,7 @@ f678882b1575 chef/chef:current "true"
246
250
#### List images
247
251
248
252
``` shell
249
- laptop: ~ /src/chef-cookbooks/hello_dokken $ docker images
253
+ $ docker images
250
254
REPOSITORY TAG IMAGE ID CREATED SIZE
251
255
6e1b03ab46-default-centos-7 latest fec1a50470ed 6 minutes ago 192 MB
252
256
chef/chef current 01ec788610e2 6 days ago 124 MB
@@ -258,7 +262,7 @@ centos 7 67591570dd29 7 weeks ag
258
262
#### kitchen destroy
259
263
260
264
``` shell
261
- laptop: ~ /src/chef-cookbooks/hello_dokken $ kitchen destroy
265
+ $ kitchen destroy
262
266
-----> Starting Kitchen (v1.15.0)
263
267
-----> Destroying < default-centos-7> ...
264
268
Deleting local sandbox at /Users/someara/.dokken/sandbox/6e1b03ab46-default-centos-7
@@ -269,15 +273,15 @@ laptop:~/src/chef-cookbooks/hello_dokken$ kitchen destroy
269
273
#### List containers
270
274
271
275
``` shell
272
- laptop: ~ /src/chef-cookbooks/hello_dokken $ docker ps -a
276
+ $ docker ps -a
273
277
CONTAINER ID IMAGE COMMAND CREATED STATUS PORTS NAMES
274
278
f678882b1575 chef/chef:current " true" 10 minutes ago Created chef-current
275
279
```
276
280
277
281
#### List images
278
282
279
283
``` shell
280
- laptop: ~ /src/chef-cookbooks/hello_dokken $ docker images
284
+ $ docker images
281
285
REPOSITORY TAG IMAGE ID CREATED SIZE
282
286
chef/chef current 01ec788610e2 6 days ago 124 MB
283
287
centos 7 67591570dd29 7 weeks ago 192 MB
0 commit comments