Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also .

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also .
  • 1 commit
  • 6 files changed
  • 0 commit comments
  • 1 contributor
Commits on Jul 27, 2016
View
@@ -61,6 +61,11 @@ services:
extends:
file: dev.yml
service: mq
celery-flower:
build: celery-flower/
extends:
file: dev.yml
service: celery-flower
redis:
build: redis/
extends:
View
@@ -104,6 +104,12 @@ services:
expose:
- "5672"
restart: always
celery-flower:
image: openspending/celery-flower
container_name: "celery-flower"
expose:
- "8000"
restart: always
redis:
image: openspending/redis
container_name: "redis"
View
@@ -116,6 +116,10 @@ services:
extends:
file: common.yml
service: mq
celery-flower:
extends:
file: common.yml
service: celery-flower
redis:
extends:
file: common.yml
@@ -40,3 +40,12 @@ location /admin/ {
location /fdp-adapter/ {
proxy_pass http://os-fdp-adapters:8000/;
}
location /status/tasks {
proxy_pass http://celery-flower:80/;
proxy_http_version 1.1;
proxy_set_header Host $host;
proxy_set_header Upgrade $http_upgrade;
proxy_set_header Connection "upgrade";
rewrite ^/status/tasks/(.*)$ /$1 break;
}
@@ -1 +1 @@
FROM rabbitmq
FROM rabbitmq:3.6.3-management
@@ -4,7 +4,8 @@ FROM gliderlabs/alpine:3.4
RUN apk add --update git libpq python bash sudo
RUN apk add --no-cache --virtual=build-dependencies \
python-dev build-base pwgen libffi-dev ca-certificates \
wget curl tar mariadb-dev postgresql-dev nodejs postgresql
wget curl tar mariadb-dev postgresql-dev nodejs postgresql \
libsasl cyrus-sasl-dev
RUN curl -L https://npmjs.org/install.sh | sh
# CA Certificates

No commit comments for this range