Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/ristep/startupdjangoondockernginxpostgresql
https://github.com/ristep/startupdjangoondockernginxpostgresql
Last synced: about 2 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/ristep/startupdjangoondockernginxpostgresql
- Owner: ristep
- License: mit
- Created: 2023-10-21T09:14:07.000Z (about 1 year ago)
- Default Branch: main
- Last Pushed: 2023-10-27T19:28:39.000Z (about 1 year ago)
- Last Synced: 2023-10-28T11:22:04.769Z (about 1 year ago)
- Language: HTML
- Size: 686 KB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# StartUp for Dockerized Django with PostgreSQL, Gunicorn and Nginx
### Based on this [tutorial](https://testdriven.io/dockerizing-django-with-postgres-gunicorn-and-nginx).
## From Original ReadMe
### Development
Uses the default Django development server.
1. Rename *.env.dev-sample* to *.env.dev*.
1. Update the environment variables in the *docker-compose.yml* and *.env.dev* files.
1. Build the images and run the containers:```sh
$ docker-compose up -d --build
```Test it out at [http://localhost:8000](http://localhost:8000). The "app" folder is mounted into the container and your code changes apply automatically.
### Production
Uses gunicorn + nginx.
1. Rename *.env.prod-sample* to *.env.prod* and *.env.prod.db-sample* to *.env.prod.db*. Update the environment variables.
1. Build the images and run the containers:```sh
$ docker-compose -f docker-compose.prod.yml up -d --build
```Test it out at [http://localhost:1337](http://localhost:1337). No mounted folders. To apply changes, the image must be re-built.