Skip to content
Snippets Groups Projects
Select Git revision
  • b3310950e38d74a5005c680a908bc5f5e2d35c22
  • develop default protected
  • simmc-based
  • drill-experiment
  • tg-felipe
  • issue/97
  • issue/63
  • icde-2019-experiments
  • issue/85
  • master protected
  • issue/20
  • refactor/engine
  • issue/6
  • feature/diagrams
  • wip-transformers
15 results

docker-compose.yml

Blame
  • docker-compose.yml 1.10 KiB
    version: '3.3'
    services:
        blendb:
            image: marula.c3sl.ufpr.br:5000/c3sl/blendb:latest
            build: .
            container_name: blendb
    #        depends_on:
    #            - db
            environment:
                BLENDB_DB_USER: ${BLENDB_DB_USER}
                BLENDB_DB_PASSWORD: ${BLENDB_DB_PASSWORD}
                BLENDB_DB_NAME: ${BLENDB_DB_NAME}
                BLENDB_DB_HOST: ${BLENDB_DB_HOST}
                BLENDB_DB_PORT: ${BLENDB_DB_PORT}
                BLENDB_ST_CREATE: ${BLENDB_ST_CREATE}
                BLENDB_ST_INSERT: ${BLENDB_ST_INSERT}
                BLENDB_ADAPTER: ${BLENDB_ADAPTER}
            volumes:
                -
                    type: bind
                    source: ./config
                    target: /home/node/app/config
                -
                    type: tmpfs
                    target: /tmp
            restart: unless-stopped
            read_only: 'true'
            security_opt:
                - no-new-privileges
    
    #    db:
    #        image: postgres:9.6
    #        container_name: db
    #        ports:
    #            - "5432"
    #        restart: unless-stopped
    #        #read_only: 'true'
    #        security_opt:
    #            - no-new-privileges