forked from okulovsky/pybossa-build
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdocker-compose.yml
More file actions
29 lines (28 loc) · 983 Bytes
/
Copy pathdocker-compose.yml
File metadata and controls
29 lines (28 loc) · 983 Bytes
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
version: '3'
services:
pybossa:
build:
context: ./docker
dockerfile: ./Dockerfile
args:
# - PYBOSSA_COMMIT="${PYBOSSA_COMMIT:-master}"
# c2d7630 is Feb 7 2018 commit with JSONB API, two commits after v2.9.0
- PYBOSSA_COMMIT="c2d7630"
environment:
- PYBOSSA_SECRET=test-only-y8y2i4ISpfwEMhLjUfXH9e5qA8qJkKA31tuLakvy
- PYBOSSA_SESSION_SECRET=test-only-y8y2i4ISpfwEMhLjUfXH9e5qA8qJkKA31tuLakvy
- PYBOSSA_DATABASE_URL=postgresql://dfuser:test-only-RDkWWAG9jXMAFO8pXu6K@pybossa-db/dforce
- PYBOSSA_ITSDANGEROUS_SECRET=test-only-2R1ucOk8KxEeh5SCaXcWPt4oDf2sHQvpiyHAPoyX
- PYBOSSA_BRAND=Deciding Force
- PYBOSSA_TITLE=Deciding Force
- PYBOSSA_LOGO=default_logo.svg
depends_on:
- pybossa-db
ports:
- "8000:80"
pybossa-db:
image: postgres:9.6
environment:
- POSTGRES_USER=dfuser
- POSTGRES_PASSWORD=test-only-RDkWWAG9jXMAFO8pXu6K
- POSTGRES_DB=dforce