Skip to content
This repository was archived by the owner on Apr 14, 2020. It is now read-only.

Commit de211e2

Browse files
committed
Update README.md
1 parent b0ecf9d commit de211e2

File tree

1 file changed

+22
-19
lines changed

1 file changed

+22
-19
lines changed

README.md

Lines changed: 22 additions & 19 deletions
Original file line numberDiff line numberDiff line change
@@ -8,24 +8,28 @@ Usage
88
-----
99

1010
To create the image `tutum/ubuntu` with one tag per Ubuntu release,
11-
execute the following commands on the tutum-ubuntu folder:
12-
13-
docker build -t tutum/ubuntu:lucid lucid/
14-
docker build -t tutum/ubuntu:precise precise/
15-
docker build -t tutum/ubuntu:quantal quantal/
16-
docker build -t tutum/ubuntu:raring raring/
17-
docker build -t tutum/ubuntu:saucy saucy/
18-
docker build -t tutum/ubuntu:trusty trusty/
19-
20-
To create different images for every Ubuntu release, with just one `latest` tag each,
21-
execute the following commands on the tutum-ubuntu folder:
22-
23-
docker build -t tutum/ubuntu-lucid lucid/
24-
docker build -t tutum/ubuntu-precise precise/
25-
docker build -t tutum/ubuntu-quantal quantal/
26-
docker build -t tutum/ubuntu-raring raring/
27-
docker build -t tutum/ubuntu-saucy saucy/
28-
docker build -t tutum/ubuntu-trusty trusty/
11+
execute the following commands on the tutum-ubuntu branch:
12+
13+
git checkout master
14+
docker build -t tutum/ubuntu:latest .
15+
16+
git checkout lucid
17+
docker build -t tutum/ubuntu:lucid .
18+
19+
git checkout precise
20+
docker build -t tutum/ubuntu:precise .
21+
22+
git checkout quantal
23+
docker build -t tutum/ubuntu:quantal .
24+
25+
git checkout raring
26+
docker build -t tutum/ubuntu:raring .
27+
28+
git checkout saucyy
29+
docker build -t tutum/ubuntu:saucy .
30+
31+
git checkout trusty
32+
docker build -t tutum/ubuntu:trusty .
2933

3034

3135
Running tutum/ubuntu
@@ -64,4 +68,3 @@ If you want to use a preset password instead of a random generated one, you can
6468
set the environment variable `ROOT_PASS` to your specific password when running the container:
6569

6670
docker run -d -p 0.0.0.0:2222:22 -e ROOT_PASS="mypass" tutum/ubuntu:trusty
67-

0 commit comments

Comments
 (0)