Skip to content

Commit 5bf4f98

Browse files
authored
Merge branch 'master' into dependabot/bundler/commonmarker-0.23.7
2 parents ba60130 + 32eb367 commit 5bf4f98

File tree

212 files changed

+63641
-94
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

212 files changed

+63641
-94
lines changed

.server_client.md.swp

12 KB
Binary file not shown.

Gemfile.lock

Lines changed: 10 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ PATH
88
GEM
99
remote: https://rubygems.org/
1010
specs:
11-
activesupport (6.0.5)
11+
activesupport (6.0.6.1)
1212
concurrent-ruby (~> 1.0, >= 1.0.2)
1313
i18n (>= 0.7, < 2)
1414
minitest (~> 5.1)
@@ -243,11 +243,15 @@ GEM
243243
jekyll (>= 3.5, < 5.0)
244244
jekyll-feed (~> 0.9)
245245
jekyll-seo-tag (~> 2.1)
246-
minitest (5.15.0)
246+
minitest (5.17.0)
247247
multipart-post (2.1.1)
248-
nokogiri (1.13.6-arm64-darwin)
248+
nokogiri (1.13.9-arm64-darwin)
249249
racc (~> 1.4)
250-
nokogiri (1.13.6-x86_64-darwin)
250+
nokogiri (1.13.9-x86_64-darwin)
251+
racc (~> 1.4)
252+
nokogiri (1.13.9-x86_64-linux)
253+
racc (~> 1.4)
254+
nokogiri (1.13.6-x86_64-linux)
251255
racc (~> 1.4)
252256
nokogiri (1.13.6-x86_64-linux)
253257
racc (~> 1.4)
@@ -298,7 +302,7 @@ GEM
298302
thread_safe (0.3.6)
299303
typhoeus (1.4.0)
300304
ethon (>= 0.9.0)
301-
tzinfo (1.2.9)
305+
tzinfo (1.2.11)
302306
thread_safe (~> 0.1)
303307
unf (0.1.4)
304308
unf_ext
@@ -310,7 +314,7 @@ GEM
310314
rexml (~> 3.2)
311315
webrick (1.7.0)
312316
yell (2.2.2)
313-
zeitwerk (2.5.4)
317+
zeitwerk (2.6.6)
314318

315319
PLATFORMS
316320
universal-darwin-21

README.md

Lines changed: 28 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,5 @@
11
# 🏗️ Getting Started with Docker
22

3-
![Visitor count](https://shields-io-visitor-counter.herokuapp.com/badge?page=collabnix.dockerlabs)
43
![stars](https://img.shields.io/github/stars/collabnix/dockerlabs)
54
![Discord](https://img.shields.io/discord/1020180904129335379)
65
![GitHub contributors](https://img.shields.io/github/contributors/collabnix/dockerlabs)
@@ -20,9 +19,10 @@
2019
- [Play with Docker Platform](https://labs.play-with-docker.com/)
2120

2221

23-
# 📝 Join our Slack Community
22+
# 📝 Join our Community
2423

25-
- Join 7000+ DevOps Engineers today via [Community Slack](https://launchpass.com/collabnix)
24+
- Join 8700+ DevOps Engineers today via [Community Slack](https://launchpass.com/collabnix)
25+
- Join 2000+ [Discord members](https://discord.gg/QEkCXAXYSe)
2626
- Fork, Contribute & Share via [DockerLabs GITHUB Repository](https://github.com/collabnix/dockerlabs)
2727
- Click and Follow us over Twitter [![Twitter URL](https://img.shields.io/twitter/url/https/twitter.com/fold_left.svg?style=social&label=Follow%20%40collabnix)](https://twitter.com/collabnix)
2828

@@ -39,6 +39,31 @@
3939
| [Docker Desktop](./workshop/dockerdesktop/README.md) | Docker Dashboard, Dev Environments, Extensions | 5 |
4040

4141

42+
43+
# Latest Docker Desktop Features and Demos
44+
45+
| Title | Topics Covered | Category | Labs |
46+
|:-------------|:------------------|:------|:------|
47+
| [Docker Scout](https://github.com/collabnix/docker-scout-community) | Scout CLI, Scout Sample Demo| Security | 2 |
48+
| [Docker init](https://github.com/dockersamples/docker-init-demos) | Dockerfile, Compose, Python, Go, Rust, Node | Developer Tools | 5|
49+
| [Docker init for Python](https://github.com/dockersamples/docker-init-demos/tree/main/python) | Dockerfile, Compose, Python | Developer Tools| 1|
50+
| [Docker init for Go](https://github.com/dockersamples/docker-init-demos/tree/main/go) |Dockerfile, Compose, Go | Developer Tools | 1|
51+
| [Docker init for Rust](https://github.com/dockersamples/docker-init-demos/tree/main/rust) |Dockerfile, Compose, Rust | Developer Tools | 1|
52+
| [Compose Watch](https://github.com/dockersamples/docker-init-demos/tree/main/python/compose-watch)| Compose, Sync, Rebuild| Developer Tools | 1 |
53+
| [Compose Include](https://github.com/ajeetraina/compose-include) | Compose, Include | Developer Tools | 1 |
54+
55+
56+
## Industry Use cases
57+
58+
| Title | Topics Covered | Labs |
59+
|:-------------|:------------------|:------|
60+
| [Docker for AI](https://github.com/collabnix/dockerlabs/tree/master/workshop/ai) | Docker for Data Scientist | 1 |
61+
| Docker for Gaming | Gaming | Not Started|
62+
| Docker for Financial Service | - | Not Started|
63+
| Docker for Healthcare | - | Not Started|
64+
65+
66+
4267
## Docker WorkShop for Beginners
4368

4469

_site/beginners/dockerfile/lab4_dockerfile_copy.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# Lab #3: Create an image with COPY instruction
2-
The COPY instruction copies files or directories from source and adds them to the filesystem of the container at destinatio.
2+
The COPY instruction copies files or directories from source and adds them to the filesystem of the container at destination.
33

44
Two form of COPY instruction
55
```

_site/play-with-docker/Portus/Gemfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@ def packaging?
5252
end
5353

5454
# If the deployment is done through Puma, include it in the bundle.
55-
gem "puma", "~> 4.3.12" if ENV["PORTUS_PUMA_DEPLOYMENT"] == "yes" || !packaging?
55+
gem "puma", "~> 5.6.7" if ENV["PORTUS_PUMA_DEPLOYMENT"] == "yes" || !packaging?
5656

5757
# In order to create the Gemfile.lock required for packaging
5858
# meaning that it should contain only the production packages

_site/play-with-docker/Portus/Gemfile.lock

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -199,7 +199,7 @@ GEM
199199
mysql2 (0.3.18)
200200
nenv (0.3.0)
201201
net-ldap (0.11)
202-
nio4r (2.5.8)
202+
nio4r (2.5.9)
203203
nokogiri (1.13.6)
204204
mini_portile2 (~> 2.8.0)
205205
racc (~> 1.4)
@@ -232,7 +232,7 @@ GEM
232232
activerecord (>= 3.0)
233233
i18n (>= 0.5.0)
234234
railties (>= 3.0.0)
235-
puma (4.3.12)
235+
puma (5.6.7)
236236
nio4r (~> 2.0)
237237
pundit (1.0.1)
238238
activesupport (>= 3.0.0)
@@ -438,7 +438,7 @@ DEPENDENCIES
438438
poltergeist
439439
pry-rails
440440
public_activity
441-
puma (~> 4.3.12)
441+
puma (~> 5.6.7)
442442
pundit
443443
quiet_assets
444444
rack-mini-profiler

_site/play-with-docker/Portus/Portus.1/Gemfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@ def packaging?
5252
end
5353

5454
# If the deployment is done through Puma, include it in the bundle.
55-
gem "puma", "~> 4.3.12" if ENV["PORTUS_PUMA_DEPLOYMENT"] == "yes" || !packaging?
55+
gem "puma", "~> 5.6.7" if ENV["PORTUS_PUMA_DEPLOYMENT"] == "yes" || !packaging?
5656

5757
# In order to create the Gemfile.lock required for packaging
5858
# meaning that it should contain only the production packages

_site/play-with-docker/Portus/Portus.1/Gemfile.lock

Lines changed: 15 additions & 20 deletions
Original file line numberDiff line numberDiff line change
@@ -83,7 +83,7 @@ GEM
8383
simplecov (>= 0.7.1, < 1.0.0)
8484
coderay (1.1.0)
8585
columnize (0.9.0)
86-
concurrent-ruby (1.1.9)
86+
concurrent-ruby (1.2.0)
8787
crack (0.4.3)
8888
safe_yaml (~> 1.0.0)
8989
crass (1.0.6)
@@ -92,12 +92,11 @@ GEM
9292
activesupport (~> 4.0)
9393
database_cleaner (1.4.1)
9494
debug_inspector (0.0.2)
95-
devise (3.5.1)
95+
devise (4.7.1)
9696
bcrypt (~> 3.0)
9797
orm_adapter (~> 0.1)
98-
railties (>= 3.2.6, < 5)
98+
railties (>= 4.1.0)
9999
responders
100-
thread_safe (~> 0.1)
101100
warden (~> 1.2.3)
102101
diff-lcs (1.2.5)
103102
docile (1.1.5)
@@ -178,7 +177,7 @@ GEM
178177
listen (3.0.6)
179178
rb-fsevent (>= 0.9.3)
180179
rb-inotify (>= 0.9.7)
181-
loofah (2.18.0)
180+
loofah (2.19.1)
182181
crass (~> 1.0.2)
183182
nokogiri (>= 1.5.9)
184183
lumberjack (1.0.10)
@@ -193,16 +192,12 @@ GEM
193192
mime-types-data (~> 3.2015)
194193
mime-types-data (3.2021.0225)
195194
mini_mime (1.1.0)
196-
mini_portile2 (2.8.0)
197-
minitest (5.14.4)
195+
198196
multi_json (1.11.2)
199197
multipart-post (2.0.0)
200198
mysql2 (0.3.18)
201199
nenv (0.3.0)
202200
net-ldap (0.11)
203-
nio4r (2.5.8)
204-
nokogiri (1.13.6)
205-
mini_portile2 (~> 2.8.0)
206201
racc (~> 1.4)
207202
notiffany (0.0.8)
208203
nenv (~> 0.1)
@@ -233,13 +228,12 @@ GEM
233228
activerecord (>= 3.0)
234229
i18n (>= 0.5.0)
235230
railties (>= 3.0.0)
236-
puma (4.3.12)
231+
puma (5.6.7)
237232
nio4r (~> 2.0)
238233
pundit (1.0.1)
239234
activesupport (>= 3.0.0)
240235
quiet_assets (1.1.0)
241236
railties (>= 3.1, < 5.0)
242-
racc (1.6.0)
243237
rack (1.6.13)
244238
rack-mini-profiler (0.9.3)
245239
rack (>= 1.1.3)
@@ -267,22 +261,23 @@ GEM
267261
activesupport (>= 3.2)
268262
choice (~> 0.2.0)
269263
ruby-graphviz (~> 1.2)
270-
rails-html-sanitizer (1.4.3)
271-
loofah (~> 2.3)
264+
rails-html-sanitizer (1.5.0)
265+
loofah (~> 2.19, >= 2.19.1)
272266
rails_stdout_logging (0.0.5)
273267
railties (4.2.8)
274268
actionpack (= 4.2.8)
275269
activesupport (= 4.2.8)
276270
rake (>= 0.8.7)
277271
thor (>= 0.18.1, < 2.0)
278272
rainbow (2.1.0)
279-
rake (11.1.2)
273+
rake (13.0.6)
280274
rb-fsevent (0.9.7)
281275
rb-inotify (0.9.7)
282276
ffi (>= 0.5.0)
283277
redcarpet (3.3.3)
284-
responders (2.1.0)
285-
railties (>= 4.2.0, < 5)
278+
responders (2.4.1)
279+
actionpack (>= 4.2.0, < 6.0)
280+
railties (>= 4.2.0, < 6.0)
286281
rouge (1.11.1)
287282
rspec (3.3.0)
288283
rspec-core (~> 3.3.0)
@@ -367,15 +362,15 @@ GEM
367362
polyglot (~> 0.3)
368363
typhoeus (1.0.2)
369364
ethon (>= 0.9.0)
370-
tzinfo (1.2.9)
365+
tzinfo (1.2.10)
371366
thread_safe (~> 0.1)
372367
uglifier (2.7.2)
373368
execjs (>= 0.3.0)
374369
json (>= 1.8.0)
375370
unicode-display_width (1.1.0)
376371
uri_template (0.5.3)
377372
vcr (3.0.3)
378-
warden (1.2.3)
373+
warden (1.2.7)
379374
rack (>= 1.0)
380375
web-console (2.1.3)
381376
activemodel (>= 4.0)
@@ -438,7 +433,7 @@ DEPENDENCIES
438433
poltergeist
439434
pry-rails
440435
public_activity
441-
puma (~> 4.3.12)
436+
puma (~> 5.6.7)
442437
pundit
443438
quiet_assets
444439
rack-mini-profiler

_site/play-with-docker/Portus/Portus.1/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
"webpack-dev-server": "^2.3.0"
1616
},
1717
"dependencies": {
18-
"bootstrap-sass": "^3.3.6",
18+
"bootstrap-sass": "^3.4.1",
1919
"compression-webpack-plugin": "^0.3.2",
2020
"jquery": "^3.5.0",
2121
"jquery-ujs": "^1.2.1",

_site/play-with-docker/Portus/Portus.1/yarn.lock

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -660,9 +660,9 @@ [email protected]:
660660
dependencies:
661661
hoek "2.x.x"
662662

663-
bootstrap-sass@^3.3.6:
664-
version "3.3.7"
665-
resolved "https://registry.yarnpkg.com/bootstrap-sass/-/bootstrap-sass-3.3.7.tgz#6596c7ab40f6637393323ab0bc80d064fc630498"
663+
bootstrap-sass@^3.4.1:
664+
version "3.4.1"
665+
resolved "https://registry.yarnpkg.com/bootstrap-sass/-/bootstrap-sass-3.4.1.tgz#6843c73b1c258a0ac5cb2cc6f6f5285b664a8e9a"
666666

667667
brace-expansion@^1.1.7:
668668
version "1.1.11"

0 commit comments

Comments
 (0)