Skip to content
Snippets Groups Projects
Select Git revision
  • a3e7751f14ef4f55b18a520f15c914b07568cd1b
  • devel default protected
  • eduardo217
  • jhenifer207
  • jhenifer128
  • jhenifer126
  • jhenifer125
  • guilherme190
  • lineu180
  • lineu181
  • bruna141
  • bruna216
  • altamiro187
  • maria134
  • maria133
  • maria132
  • vinicius177
  • vinicius176
  • vinicius173
  • vinicius210
  • ludmila155
21 results

MingotiAnA1.Rd

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