Skip to content
Snippets Groups Projects
Select Git revision
  • bootstrap4_migration
  • develop default
  • master protected
  • unicaen_authentification
  • 5.x
  • 4.x
  • release_4.0.0
  • laminas_migration
  • zf-3.x
  • 7.1.0
  • 7.0.0
  • 6.1.0
  • 6.0.1
  • 6.0.0
  • 5.0.1
  • 5.0.0
  • 4.0.2
  • 4.0.1
  • 4.0.0
  • 3.0.0
  • 1.0.5
  • 1.0.4
  • 1.0.3
  • 1.0.2
  • 1.0.1
  • 1.0.0
26 results

schema.oracle.sql

Blame
  • Code owners
    Assign users and groups as approvers for specific file changes. Learn more.
    docker-compose.yml 1.11 KiB
    version: '3.1'
    
    services:
      empty:
        build:
          context: .
        environment:
          RESOURCE_DIR: "docker/empty"
          POSTGRES_USER: postgres
          POSTGRES_PASSWORD: admin
          SYGAL_DB: sygal
          SYGAL_USER: ad_sygal
          SYGAL_PASSWORD: azerty
        ports:
          - "5632:5432"
        volumes:
          - /tmp/sygal-db/empty/db:/var/lib/postgresql/data  # répertoire où la bdd est persistée
    
      dist:
        build:
          context: .
        environment:
          RESOURCE_DIR: "docker/dist"
          POSTGRES_USER: postgres
          POSTGRES_PASSWORD: admin
          SYGAL_DB: sygal
          SYGAL_USER: ad_sygal
          SYGAL_PASSWORD: azerty
        ports:
          - "5532:5432"
        volumes:
          - /tmp/sygal-db/dist/db:/var/lib/postgresql/data  # répertoire où la bdd est persistée
    
      demo:
        build:
          context: .
        environment:
          RESOURCE_DIR: "docker/demo"
          POSTGRES_USER: postgres
          POSTGRES_PASSWORD: admin
          SYGAL_DB: sygal_demo
          SYGAL_USER: ad_sygal_demo
          SYGAL_PASSWORD: azerty
        ports:
          - "5432:5432"
        volumes:
          - /tmp/sygal-db/demo/db:/var/lib/postgresql/data  # répertoire où la bdd est persistée