Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/wlonk/docklands
A skeleton for running Django via Docker.
https://github.com/wlonk/docklands
Last synced: 14 days ago
JSON representation
A skeleton for running Django via Docker.
- Host: GitHub
- URL: https://github.com/wlonk/docklands
- Owner: wlonk
- Created: 2014-10-21T18:05:26.000Z (about 10 years ago)
- Default Branch: master
- Last Pushed: 2014-10-28T14:43:20.000Z (about 10 years ago)
- Last Synced: 2024-04-09T21:15:48.454Z (7 months ago)
- Language: Python
- Homepage:
- Size: 133 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
Docklands
=========This is a skeleton project for running a Django application in a thoroughly
dockerized environment. It contains a Postgres database, a Redis broker, a
Memcached caching layer, a webserver, a workerserver, and a task scheduler.Requirements
------------* Docker 1.3.0 or higher
* Fig 1.0.0 or higher
* Boot2docker 1.3.0 or higher if using OS X.Installation
------------```bash
git clone [email protected]:wlonk/docklands.git
cd docklands
fig build
fig up
```Get the IP of your docker host (you can get this via `boot2docker ip` if you
are using OS X), and then go to `:8000` in a browser to see that
everything started up correctly.Running management commands
---------------------------You can run one-off management commands as follows:
```bash
fig run web python docklands/manage.py syncdb # Or whatever other command you wish.
```