forked from datosgobar/portal-andino
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdev.yml
38 lines (38 loc) · 807 Bytes
/
dev.yml
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
37
38
version: '2'
services:
nginx:
image: datosgobar/portal-base-nginx:release-0.6
ports:
- 80:80
depends_on:
- portal
portal:
build:
context: .
args:
- PORTAL_VERSION
container_name: portal_development
ports:
- 8800:8800
depends_on:
- db
- solr
- redis
- postfix
volumes:
- $PWD:/dev-app
db:
image: postgres:9.5
environment:
- POSTGRES_USER=ckan
- POSTGRES_PASSWORD=ckan
- POSTGRES_DB=ckan
redis:
image: redis:3.2.7-alpine
solr:
image: datosgobar/portal-base-solr:release-0.6
postfix:
image: catatnight/postfix
ports:
- "25:25"
- "587:587"