forked from datosgobar/portal-andino
-
Notifications
You must be signed in to change notification settings - Fork 0
/
dev.yml
48 lines (47 loc) · 1.02 KB
/
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
39
40
41
42
43
44
45
46
47
48
version: '2'
services:
nginx:
image: datosgobar/portal-base-nginx:release-0.10.19
ports:
- 80:80
- 443:443
depends_on:
- portal
environment:
- NGINX_CONFIG_FILE
- NGINX_EXTENDED_CACHE
- NGINX_CACHE_MAX_SIZE
- NGINX_CACHE_INACTIVE
- NGINX_HOST_SSL_PORT
portal:
build:
context: .
args:
- PORTAL_VERSION
ports:
- 8800:8800
- 8080:8080
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.4-alpine
solr:
image: datosgobar/portal-base-solr:release-0.9.0
postfix:
image: catatnight/postfix
environment:
- maildomain=localhost
- smtp_user=portal:portal
expose:
- "25"