Cellar In-Memory Application (by cconraets)
832
"Backbone Cellar" is a sample CRUD application built with Backbone.js and Twitter Bootstrap, originally developed by Christophe Coenraets and published in the backbone-cellar GitHub repository. The application allows you to browse through a list of wines, as well as add, update, and delete wines.
This application is further documented here.
The application is also hosted online. You can test it here.
The application is provided with an in-memory datastore that allows you to experience the app without setting up a back-end. All the changes you make to the data will be lost the next time you access the app or hit Refresh.
Dockerfile created by Germán Moltó for the Curso Online de Cloud Computing con Amazon Web Services.
docker run -d -p 80:80 --name cellar-mem gmolto/cellar-mem
The application will be exposed at port 80 in the Docker Host: http://Docker_Host_IP
You can let Docker decide a free port in the Docker Host:
docker run -d -P --name cellar-mem gmolto/cellar-mem
Use the following command to find out the used port:
docker port cellar-mem 80
0.0.0.0:32776
The application will be exposed at: http://Docker_Host_IP:32776
Content type
Image
Digest
Size
153 MB
Last updated
almost 9 years ago
docker pull gmolto/cellar-mem