Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
What's new
10
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Open sidebar
Corsi
Slides Corsi Linux Avanzati
Docker
Commits
d7449918
Commit
d7449918
authored
Apr 25, 2020
by
Paddy
🐧
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fix some minor errors
parent
167feb4f
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
5 additions
and
2 deletions
+5
-2
Docker.md
Docker.md
+5
-2
No files found.
Docker.md
View file @
d7449918
...
...
@@ -93,6 +93,7 @@ To install docker, you can simply run:
```
bash
$
sudo
apt-get
install
docker
$
sudo
systemctl
--now
enable
dockerd
$
sudo
usermod
-a
-G
docker myuser
```
----
...
...
@@ -213,8 +214,10 @@ Docker define a DSL (Domain Specific Language) to declare each of this steps.
## Containers DIY: An example
```
Dockerfile
FROM
alpine
RUN
echo
"Hello World!"
FROM
alpine:latest
RUN
apk add curl
ENTRYPOINT
["curl"]
```
----
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment