forked from rafalp/Misago
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdocker-compose.yaml
36 lines (36 loc) · 1.07 KB
/
docker-compose.yaml
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
35
36
# This compose setup is only meant for local development of Misago itself
# This is not for running your Misago site in docker
version: "3.0"
services:
postgres:
image: postgres:10
environment:
- POSTGRES_USER=misago
- POSTGRES_PASSWORD=misago
ports:
- '127.0.0.1:5432:5432'
misago:
build: .
command: python manage.py runserver 0.0.0.0:8000
environment:
# Postgres
- POSTGRES_USER=misago
- POSTGRES_PASSWORD=misago
- POSTGRES_DB=misago
- POSTGRES_HOST=postgres
- POSTGRES_TEST_DB=misago_test
# Superuser
- SUPERUSER_USERNAME=Admin
- SUPERUSER_EMAIL=admin@example.com
- SUPERUSER_PASSWORD=password
ports:
# Map port 8000 in the container to port 8000 on the host
# This way we can access the forum through http://localhost:8000
- "8000:8000"
depends_on:
- postgres
tty: true
volumes:
# Map in the entire project into the container
# This makes sure files in the container updates on the fly as we were working locally
- .:/srv/misago:Z