Docker start
Set up a development environment with a skeleton "Hello world" Cherrycake web app to start working in just a few minutes using Docker.
Please note that the Cherrycake Docker project only runs in Linux. Should work in Mac Os too, but hasn't been tested yet.
First of all if you haven't done it before, install Docker.
Clone or download the Cherrycake Docker project:
git clone https://github.com/tin-cat/cherrycake-docker.git CherrycakeAppDockerOnce in the Cherrycake Docker directory, use the cherrycake script to interact with the docker project. Run ./cherrycake without any argument to see a list of all the available commands:
./cherrycakeNote that, depending on your Docker installation, you might need root privileges to run the
./cherrycakescript. In such cases, usesudo ./cherrycakeinstead.
To start the server, use the start command:
./cherrycake startOnce the initial build is complete, you'll have a working development environment ready:
Access
http://localhoston your browser to see the running app.Access
http://localhost:8080to admin your database (Userroot, no password)Your Cherrycake app is stored under the
/appdirectory, start working there!
Last updated
Was this helpful?