Difference between revisions of "Docker"

From Blue-IT.org Wiki

(Further Reading and HowTos)
 
(19 intermediate revisions by the same user not shown)
Line 1: Line 1:
 
[https://www.digitalocean.com/community/tutorials Digital Ocean (DO)] is a great source for tutorials about using and managing Docker on Ubuntu.
 
[https://www.digitalocean.com/community/tutorials Digital Ocean (DO)] is a great source for tutorials about using and managing Docker on Ubuntu.
There is also the [https://blog.docker.com Docker Blog] for tutorials and news about Docker:
 
  
Here are the main themes you should be familiar with to get docker running on Ubuntu:
+
There is surely also the [https://blog.docker.com Docker Blog (DB)] for tutorials and news about Docker.
  
Installation:
+
Here are the main themes you should be familiar with to get docker running on Ubuntu. You should at least read an test around the articles in the general section until you will be able to be productive - believe me or not, you'll see!
# [https://www.digitalocean.com/community/tutorials/how-to-install-and-use-docker-on-ubuntu-16-04 General installation and usage on 16.04 (DO)]
 
  
Docker Compose:
+
== Basic informations using Docker on Ubuntu ==
# [https://www.digitalocean.com/community/tutorials/how-to-install-and-use-docker-compose-on-ubuntu-14-04 DO - Docker-Compose AKA Fig (DO)]
+
The following gives you a base idea but without Docker Composer (next section) you'll miss the real fun. It only shows you how to save the state of a container as a new Docker image.
 +
* [https://www.digitalocean.com/community/tutorials/how-to-install-and-use-docker-on-ubuntu-16-04 General installation and usage on 16.04 (DO)]
 +
 
 +
Docker Compose (I consider this the most interesting article):
 +
* [https://www.digitalocean.com/community/tutorials/how-to-install-and-use-docker-compose-on-ubuntu-14-04 DO - Docker-Compose AKA Fig (DO)]
 +
* [https://docs.docker.com/compose/compose-file Docker Compose File (YML) Reference (docker.com)]
 +
 
 +
The [http://phusion.github.io/baseimage-docker Phusion/Basimage of Ubuntu] and why you could / should use it:
 +
* https://blog.phusion.nl/2015/01/20/docker-and-the-pid-1-zombie-reaping-problem/
 +
* https://blog.phusion.nl/2015/01/20/baseimage-docker-fat-containers-treating-containers-vms/
  
 
Docker Registry:
 
Docker Registry:
* [https://www.digitalocean.com/community/tutorials/how-to-set-up-a-private-docker-registry-on-ubuntu-14-04 Digital Ocean - Private Docker Registry]
+
* [https://www.digitalocean.com/community/tutorials/how-to-set-up-a-private-docker-registry-on-ubuntu-14-04 Private Docker Registry on 14.04 (DO)]
* [https://blog.docker.com/2013/07/how-to-use-your-own-registry  Docker Blog]
+
* [https://blog.docker.com/2013/07/how-to-use-your-own-registry  Registry (DB)]
  
 
Docker Data Volumes and Shared Folders:
 
Docker Data Volumes and Shared Folders:
 
* https://www.digitalocean.com/community/tutorials/how-to-work-with-docker-data-volumes-on-ubuntu-14-04
 
* https://www.digitalocean.com/community/tutorials/how-to-work-with-docker-data-volumes-on-ubuntu-14-04
  
Docker Real World LAMP example (Wordpress):
+
== Further Reading and HowTos ==
* https://www.digitalocean.com/community/tutorials/how-to-install-wordpress-and-phpmyadmin-with-docker-compose-on-ubuntu-14-04
+
 
 +
* [https://github.com/wsargent/docker-cheat-sheet Docker Cheat Sheet (Github)]
 +
* [https://www.digitalocean.com/community/tutorials/how-to-install-wordpress-and-phpmyadmin-with-docker-compose-on-ubuntu-14-04 Docker Real World LAMP example with Wordpress (DO)]
 +
* Getting to the outside world: https://github.com/aditosoftware/docker-ssh-tunneling
  
 
[[Category:Docker]]
 
[[Category:Docker]]

Latest revision as of 14:11, 23 August 2018

Digital Ocean (DO) is a great source for tutorials about using and managing Docker on Ubuntu.

There is surely also the Docker Blog (DB) for tutorials and news about Docker.

Here are the main themes you should be familiar with to get docker running on Ubuntu. You should at least read an test around the articles in the general section until you will be able to be productive - believe me or not, you'll see!

Basic informations using Docker on Ubuntu

The following gives you a base idea but without Docker Composer (next section) you'll miss the real fun. It only shows you how to save the state of a container as a new Docker image.

Docker Compose (I consider this the most interesting article):

The Phusion/Basimage of Ubuntu and why you could / should use it:

Docker Registry:

Docker Data Volumes and Shared Folders:

Further Reading and HowTos