Skip to content

Commit

Permalink
ref(data): use ubuntu:14.04 as Dockerfile base image
Browse files Browse the repository at this point in the history
  • Loading branch information
mboersma committed Sep 30, 2014
1 parent 70969eb commit 08d5b21
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion database/tests/database_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ func TestDatabase(t *testing.T) {
defer cli.CmdRm("-f", etcdName)
dataName := "deis-database-data-" + tag
dockercli.RunDeisDataTest(t, "--name", dataName,
"-v", "/var/lib/postgresql", "deis/base", "true")
"-v", "/var/lib/postgresql", "ubuntu:14.04", "true")
host, port := utils.HostAddress(), utils.RandomPort()
fmt.Printf("--- Run deis/database:%s at %s:%s\n", tag, host, port)
name := "deis-database-" + tag
Expand Down
2 changes: 1 addition & 1 deletion logger/tests/logger_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ func TestLogger(t *testing.T) {
defer cli.CmdRm("-f", etcdName)
dataName := "deis-logger-data-" + tag
dockercli.RunDeisDataTest(t, "--name", dataName,
"-v", "/var/log/deis", "deis/base", "/bin/true")
"-v", "/var/log/deis", "ubuntu:14.04", "/bin/true")
host, port := utils.HostAddress(), utils.RandomPort()
fmt.Printf("--- Run deis/logger:%s at %s:%s\n", tag, host, port)
name := "deis-logger-" + tag
Expand Down
2 changes: 1 addition & 1 deletion registry/tests/registry_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ func TestRegistry(t *testing.T) {
etcdutils.PublishEtcd(t, handler)
dataName := "deis-registry-data-" + tag
dockercli.RunDeisDataTest(t, "--name", dataName,
"-v", "/data", "deis/base", "/bin/true")
"-v", "/data", "ubuntu:14.04", "/bin/true")
host, port := utils.HostAddress(), utils.RandomPort()
fmt.Printf("--- Run deis/registry:%s at %s:%s\n", tag, host, port)
name := "deis-registry-" + tag
Expand Down

0 comments on commit 08d5b21

Please sign in to comment.