Skip to content

Commit

Permalink
Merge pull request moby#9953 from evverx/patch-1
Browse files Browse the repository at this point in the history
Update Ubuntu image tag to 14.04
  • Loading branch information
crosbymichael committed Jan 12, 2015
2 parents e90e754 + 736558b commit a52c3a7
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions docs/sources/examples/running_redis_service.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ using a link.
Firstly, we create a `Dockerfile` for our new Redis
image.

FROM ubuntu:12.10
FROM ubuntu:14.04
RUN apt-get update && apt-get install -y redis-server
EXPOSE 6379
ENTRYPOINT ["/usr/bin/redis-server"]
Expand Down Expand Up @@ -43,7 +43,7 @@ created with an alias of `db`. This will create a secure tunnel to the
`redis` container and expose the Redis instance running inside that
container to only this container.

$ sudo docker run --link redis:db -i -t ubuntu:12.10 /bin/bash
$ sudo docker run --link redis:db -i -t ubuntu:14.04 /bin/bash

Once inside our freshly created container we need to install Redis to
get the `redis-cli` binary to test our connection.
Expand Down

0 comments on commit a52c3a7

Please sign in to comment.