Skip to content
Snippets Groups Projects
Select Git revision
  • ff573cfebc7c6deef30a8d5d55f221c7d417bfb2
  • main default
  • fixtests
  • dynamic-map-layers
  • 1.0.0
5 results

Sidebar.jsx

Blame
  • docker-compose-dev.yml 3.06 KiB
    version: '3'
    services:
    
      slurmclustermaster:
        image: "rosetta/slurmclustermaster"
        container_name: slurmclustermaster
        hostname: slurmclustermaster
        restart: unless-stopped
        environment:
          - SAFEMODE=False
        privileged: true
        volumes:
          - ./data/shared:/shared
    
      slurmclusterworker:
        image: "rosetta/slurmclusterworker"
        container_name: slurmclusterworker
        hostname: slurmclusterworker
        restart: unless-stopped
        environment:
          - SAFEMODE=False
        privileged: true
        volumes:
          - ./data/shared:/shared
          - /var/run/docker.sock:/var/run/docker.sock
    
      standaloneworker:
        image: "rosetta/standaloneworker"
        container_name: standaloneworker
        hostname: standaloneworker
        privileged: true
        restart: unless-stopped
        volumes:
          - ./data/shared:/shared
          - /var/run/docker.sock:/var/run/docker.sock
    
      dregistry:
        container_name: dregistry
        hostname: dregistry
        image: "rosetta/dregistry"
        restart: unless-stopped
        volumes:
          - ./data/dregistry:/var/lib/registry
    
      postgres:
        image: "rosetta/postgres"
        container_name: postgres
        hostname: postgres
        restart: unless-stopped
        environment:
          - SAFEMODE=False
        volumes:
          - ./data/postgres/data:/data    
    
      webapp:
        image: "rosetta/webapp"
        container_name: webapp
        hostname: webapp
        restart: unless-stopped
        environment:
          - SAFEMODE=False
          - DJANGO_DB_ENGINE="django.db.backends.postgresql_psycopg2"
          - DJANGO_DB_NAME="rosetta"
          - DJANGO_DB_USER="rosetta_master"
          - DJANGO_DB_PASSWORD="949fa84a"
          - DJANGO_DB_HOST="postgres"
          - DJANGO_DB_PORT=5432
          - DJANGO_DEV_SERVER=True
          - DJANGO_DEBUG=True
          - DJANGO_LOG_LEVEL=CRITICAL