Skip to content
Snippets Groups Projects
Select Git revision
  • 20bf373ab5f99e69cd1ce25458f629dca5e483d8
  • master default
  • LTP20
  • LTP19
  • LTP18
  • LTP17
  • LTP16
  • LTP15
  • LTP14
  • LTP13
  • LTP12
  • LTP01-03
  • LTP05
  • LTP04
  • LTP06
  • LTP11
  • LTP10
  • LTP09
  • LTP08
  • LTP07
  • LTP00
  • Version-LTP20_1.0.0
  • Version-LTP19_1.1.0
  • Version-LTP18_1.1.0
  • Version-LTP17_1.2.0
  • Version-LTP16_1.2.0
  • Version-LTP19_1.0.0
  • Version-LTP18_1.0.0
  • Version-LTP17_1.1.0
  • Version-LTP16_1.1.0
  • Version-LTP16_1.0.0
  • Version-LTP15_1.0.0
  • Version-LTP14_1.0.0
  • Version-LTP13_1.0.0
  • Version-LTP12_1.1.0
  • Version-LTP01-03_1.2.1
  • Version-LTP12_1.0.0
  • Version-LTP01-03_1.2.0
  • Version-LTP04_1.2.0
  • Version-LTP05_1.1.0
  • Version-LTP06_1.1.0
41 results

Dark_UVDA_STP277_29937ms_NDIT1-1_NDIT2-1_error.fits

Blame
  • docker-compose-dev.yml 2.03 KiB
    version: '3'
    services:
    
      slurmclustermaster-main:
        image: "rosetta/slurmclustermaster"
        container_name: slurmclustermaster-main
        hostname: slurmclustermaster-main
        environment:
          - SAFEMODE=False
        privileged: true
        volumes:
          - ./data/shared:/shared
          # - ./data/singularity_cache:/rosetta/.singularity/cache # Not working, check permissions...
    
      slurmclusterworker-one:
        image: "rosetta/slurmclusterworker"
        container_name: slurmclusterworker-one
        hostname: slurmclusterworker-one
        environment:
          - SAFEMODE=False
        privileged: true
        volumes:
          - ./data/shared:/shared
    
      dregistry:
        container_name: dregistry
        hostname: dregistry
        image: "rosetta/dregistry"
        volumes:
          - ./data/dregistry:/var/lib/registry
        ports:
          - "5000:5000"
    
      postgres:
        image: "rosetta/postgres"
        container_name: postgres
        hostname: postgres
        environment:
          - SAFEMODE=False
        volumes:
          - ./data/postgres/data:/data    
    
      webapp:
        image: "rosetta/webapp"
        container_name: webapp
        hostname: webapp
        environment:
          - SAFEMODE=False
          - DJANGO_DEV_SERVER=True
          - DJANGO_DEBUG=True
          - DJANGO_LOG_LEVEL=CRITICAL
          - ROSETTA_LOG_LEVEL=DEBUG
          #- ROSETTA_TUNNEL_HOST=
          #- ROSETTA_WEBAPP_HOST=
          #- ROSETTA_WEBAPP_PORT=8080
          #- LOCAL_DOCKER_REGISTRY_HOST=
          #- LOCAL_DOCKER_REGISTRY_PORT=5000
          #- DJANGO_EMAIL_APIKEY=""
          #- DJANGO_EMAIL_FROM="Rosetta Platform <notifications@rosetta.platform>"
          #- DJANGO_PUBLIC_HTTP_HOST=http://localhost:8080
          #- DJANGO_SECRET_KEY=""
        ports:
          - "8080:8080"
          - "7000-7020:7000-7020"
        volumes:
          - ./data/webapp/data:/data
          - ./data/webapp/log:/var/log/webapp
          - /var/run/docker.sock:/var/run/docker.sock
          - ./services/webapp/code:/opt/code
    
      proxy:
        image: "rosetta/proxy"
        container_name: proxy
        hostname: proxy
        environment:
          - SAFEMODE=False
        ports:
          - "80:80"
          - "443:443"
        volumes:
          - ./data/proxy/data:/data