diff options
author | Kamil Trzciński <ayufan@ayufan.eu> | 2015-08-13 18:39:21 +0000 |
---|---|---|
committer | Kamil Trzciński <ayufan@ayufan.eu> | 2015-08-13 18:39:21 +0000 |
commit | 1b0e80bdf56221473df0c4eb432bbc3238683d29 (patch) | |
tree | c3b90b22897e894e443dc7e2c3c34cca8aa26703 | |
parent | 197e6e6008816c519aac37806c1edf10ee233473 (diff) | |
parent | 6dee917429783cc4d0512515d7f4836216ff7637 (diff) | |
download | gitlab-ci-1b0e80bdf56221473df0c4eb432bbc3238683d29.tar.gz |
Merge branch 'master' into 'master'
changes docker image name from python to ruby
See merge request !232
-rw-r--r-- | doc/examples/test-and-deploy-ruby-application-to-heroku.md | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/doc/examples/test-and-deploy-ruby-application-to-heroku.md b/doc/examples/test-and-deploy-ruby-application-to-heroku.md index 36376bd..a1265ae 100644 --- a/doc/examples/test-and-deploy-ruby-application-to-heroku.md +++ b/doc/examples/test-and-deploy-ruby-application-to-heroku.md @@ -58,10 +58,10 @@ gitlab-ci-multi-runner register \ --registration-token "PROJECT_REGISTRATION_TOKEN" \ --description "ruby-2.1" \ --executor "docker" \ - --docker-image python:2.1 \ + --docker-image ruby:2.1 \ --docker-postgres latest ``` With the command above, you create a runner that uses [ruby:2.1](https://registry.hub.docker.com/u/library/ruby/) image and uses [postgres](https://registry.hub.docker.com/u/library/postgres/) database. -To access PostgreSQL database you need to connect to `host: postgres` as user `postgres` without password. +To access PostgreSQL database you need to connect to `host: postgres` as user `postgres` without password.
\ No newline at end of file |