blob: 542caa824b60ef59f09203c5f2bab36e7da1a4e4 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
|
version: "3.6"
services:
django:
image: registry.gitlab.com/python-discord/projects/site/django:latest
depends_on:
- migrator
- postgres
- web
environment:
DATABASE_URL: postgres://pysite:@postgres/pysite
DEBUG: "0"
SECRET_KEY: suitable-for-development-only
ports:
- "127.0.0.1:4000:4000"
migrator:
image: registry.gitlab.com/python-discord/projects/site/django:latest
command: python manage.py migrate
depends_on:
- postgres
environment:
DATABASE_URL: postgres://pysite:@postgres/pysite
DEBUG: "0"
SECRET_KEY: suitable-for-development-only
postgres:
image: postgres:11-alpine
environment:
POSTGRES_DB: pysite
POSTGRES_PASSWORD: ""
POSTGRES_USER: pysite
web:
image: pythondiscord/nging
|