Last active
August 29, 2015 14:09
-
-
Save johannessteu/04b20fc220e6b0ff10f0 to your computer and use it in GitHub Desktop.
Test TYPO3 Neos 1.2 beta with docker
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
docker pull johannessteu/typo3neos | |
docker run --name neos-mysql -e MYSQL_ROOT_PASSWORD=YOUR_PASSWORD -d mysql | |
docker run --name neos -d -p 8080:80 --link neos-mysql:db -e VERSION=1.2 johannessteu/typo3neos | |
Wait 1-2 minutes and you will be able to see neos runnting under port 8080 on your server/ip/domain. | |
You can use docker logs -f neos to see the installation process | |
For further informations check this out: | |
https://registry.hub.docker.com/u/johannessteu/typo3neos/ |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
It should be
docker pull johannessteu/typo3neos