aboutsummaryrefslogtreecommitdiffstats
path: root/src/laas_dashboard
AgeCommit message (Expand)AuthorFilesLines
2021-11-04Work around celery relpath bug for schedule fileSawyer Bergeron2-2/+3
2021-10-15Merge User Booking API Rev 1 (Try 3)Sawyer Bergeron1-40/+35
2021-02-25Update celery schedule to send emailsSean Smith1-0/+4
2021-01-04Fix issue where users are redirected to Jira login in LFID mode in certain casesAdam Hassick1-1/+3
2020-12-04LFID login for both projects2.1.0-rc1Sean Smith1-9/+19
2020-12-04Revert "Revert "Enable OpenID""Sawyer Bergeron2-2/+18
2020-11-09Analytics changesSean Smith1-0/+5
2020-06-23Revert "Enable OpenID"Sawyer Bergeron2-18/+2
2020-06-23Enable OpenIDssmith2-2/+18
2020-05-20Reworks resource tests into model validation where possible.ssmith1-0/+110
2020-02-06Merge "Comments and Documentation"Parker Berberian2-3/+4
2020-01-30Adds Template OverridesParker Berberian1-1/+14
2020-01-28Comments and DocumentationParker Berberian2-3/+4
2019-12-03Add warning email and notificationBrandon Lo1-0/+6
2019-10-08Rename pharos to laasAric Gardner5-0/+320
*/ .highlight .il { color: #0000DD; font-weight: bold } /* Literal.Number.Integer.Long */ }
---
##############################################################################
# Copyright (c) 2016 Max Breitenfeldt and others.
# Copyright (c) 2018 Parker Berberian, Sawyer Bergeron, and others.
#
# All rights reserved. This program and the accompanying materials
# are made available under the terms of the Apache License, Version 2.0
# which accompanies this distribution, and is available at
# http://www.apache.org/licenses/LICENSE-2.0
##############################################################################
version: '3'
services:
    nginx:
        restart: always
        image: nginx:latest
        container_name: ng01
        ports:
            - "80:80"
        volumes:
            - ./config/nginx:/etc/nginx/conf.d
            - pharos-static:/static:ro
            - pharos-media:/media
        depends_on:
            - web

    web:
        image: opnfv/pharos-tools-laas-dashboard:latest
        restart: always
        container_name: dg01
        depends_on:
            - postgres
        links:
            - postgres
        env_file: config.env
        volumes:
            - pharos-static:/static
            - pharos-media:/media
        expose:
            - "8000"

    postgres:
        restart: always
        image: postgres:10
        container_name: ps01
        env_file: config.env
        volumes:
            - pharos-data:/var/lib/postgresql/data

    rabbitmq:
        image: rabbitmq
        container_name: rm01
        env_file: config.env
        ports:
            - "5672:5672"

    worker:
        image: opnfv/pharos-tools-laas-celery:latest
        restart: always
        env_file: config.env
        links:
            - postgres
            - rabbitmq
volumes:
    pharos-media:
    pharos-static:
    pharos-data:
        external: true