From 16e50db26c7497758ad64432172103ad3f4322d0 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Marcin=20Ry=C5=BCycki?= Date: Mon, 10 Nov 2014 14:49:48 +0000 Subject: [PATCH] README update: added info about accessing SSH container --- README.md | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index 1e982e7..20e4e39 100644 --- a/README.md +++ b/README.md @@ -30,9 +30,16 @@ docker run -d --name=neos -p=8080:80 --link=db:db million12/typo3-neos docker logs -f neos # to see how TYPO3 Neos initialisation is going on... # If you need to SSH into your set up, launch also SSH container and glue it to the above one: -docker run -d --name=dev --link=db:db --link=neos:web --volumes-from=neos -p=1122:22 million12/php-app-ssh +docker run -d --name=dev --link=db:db --link=neos:web --volumes-from=neos -p=1122:22 --env="IMPORT_GITHUB_PUB_KEYS=your-github-username" million12/php-app-ssh ``` +#### Development + +If you have launched SSH container with above instruction and you have provided your GitHub username (via **IMPORT_GITHUB_PUB_KEYS** env variable), you can login to it using +```ssh -p 1122 www@DOCKER_HOST_IP``` + +You can use it to execute `./flow` commands, upload files via SFTP etc. Read more about the SSH container and how to use it on [million12/docker-php-app-ssh](https://github.com/million12/docker-php-app-ssh) repository page. + ### Running tests This container is ready to run unit, functional and Behat tests against TYPO3 Neos. For an example how to run them, see the [million12/behat-selenium](https://github.com/million12/docker-behat-selenium) repository.