mirror of
https://github.com/cookiecutter/cookiecutter-django.git
synced 2024-11-13 13:17:00 +03:00
1f7be4eb57
* Revert "[Fix] #1173 Nginx SSL redirect loop (#1174)" This reverts commitcabcc7b106
. * Revert "Fix Getting Up and Running Locally With Docker doc sphinx warnings (#1165)" This reverts commit83c8594203
. * Revert "Fix index.rst sphinx warnings (#1166)" This reverts commit51dd0b5e73
. * Revert "Pin mailhog Docker image to v1.0.0 (#1201)" This reverts commitd9f870461b
. * Revert "Node.JS + docker-compose = ♥ (#1128)" This reverts commit4b06fe3958
.
51 lines
1.0 KiB
YAML
51 lines
1.0 KiB
YAML
version: '2'
|
|
|
|
volumes:
|
|
postgres_data_dev: {}
|
|
postgres_backup_dev: {}
|
|
|
|
services:
|
|
postgres:
|
|
build: ./compose/postgres
|
|
volumes:
|
|
- postgres_data_dev:/var/lib/postgresql/data
|
|
- postgres_backup_dev:/backups
|
|
environment:
|
|
- POSTGRES_USER={{cookiecutter.project_slug}}
|
|
|
|
django:
|
|
build:
|
|
context: .
|
|
dockerfile: ./compose/django/Dockerfile-dev
|
|
command: /start-dev.sh
|
|
depends_on:
|
|
- postgres{% if cookiecutter.use_mailhog == 'y' %}
|
|
- mailhog{% endif %}
|
|
environment:
|
|
- POSTGRES_USER={{cookiecutter.project_slug}}
|
|
- USE_DOCKER=yes
|
|
volumes:
|
|
- .:/app
|
|
ports:
|
|
- "8000:8000"
|
|
|
|
{% if cookiecutter.use_pycharm == 'y' %}
|
|
pycharm:
|
|
build:
|
|
context: .
|
|
dockerfile: ./compose/django/Dockerfile-dev
|
|
depends_on:
|
|
- postgres
|
|
environment:
|
|
- POSTGRES_USER={{cookiecutter.project_slug}}
|
|
volumes:
|
|
- .:/app
|
|
{% endif %}
|
|
|
|
{% if cookiecutter.use_mailhog == 'y' %}
|
|
mailhog:
|
|
image: mailhog/mailhog:v1.0.0
|
|
ports:
|
|
- "8025:8025"
|
|
{% endif %}
|