Skip to content

Instantly share code, notes, and snippets.

@johannessteu
Last active August 29, 2015 14:09
Show Gist options
  • Save johannessteu/04b20fc220e6b0ff10f0 to your computer and use it in GitHub Desktop.
Save johannessteu/04b20fc220e6b0ff10f0 to your computer and use it in GitHub Desktop.
Test TYPO3 Neos 1.2 beta with docker
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/
@dimaip
Copy link

dimaip commented Nov 18, 2014

It should be docker pull johannessteu/typo3neos

@dimaip
Copy link

dimaip commented Nov 18, 2014

And thanks for the work, trying it out!

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment