Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add support for 15.04, add systemd note for 15.04 #14217

Merged
merged 1 commit into from
Jul 22, 2015
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
19 changes: 19 additions & 0 deletions docs/installation/ubuntulinux.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,7 @@ parent = "smn_linux"

Docker is supported on these Ubuntu operating systems:

- Ubuntu Vivid 15.04
- Ubuntu Trusty 14.04 (LTS)
- Ubuntu Precise 12.04 (LTS)
- Ubuntu Saucy 13.10
Expand Down Expand Up @@ -42,6 +43,10 @@ your kernel version:
>version.


### For Vivid 15.04

There are no prerequisites for this version.

### For Trusty 14.04

There are no prerequisites for this version.
Expand Down Expand Up @@ -143,6 +148,7 @@ better with Docker.
* [Adjust memory and swap accounting](#adjust-memory-and-swap-accounting)
* [Enable UFW forwarding](#enable-ufw-forwarding)
* [Configure a DNS server for use by Docker](#configure-a-dns-server-for-docker)
* [Configure Docker to start on boot](#configure-docker-to-start-on-boot)

### Create a Docker group

Expand Down Expand Up @@ -316,6 +322,19 @@ NetworkManager (this might slow your network).

$ sudo restart network-manager $ sudo restart docker

### Configure Docker to start on boot

Ubuntu uses `systemd` as its boot and service manager `15.04` onwards and `upstart`
for versions `14.10` and below.

For `15.04` and up, to configure the `docker` daemon to start on boot, run

$ sudo systemctl enable docker

 

For `14.10` and below the above installation method automatically configures `upstart`
to start the docker daemon on boot

## Upgrade Docker

Expand Down