mirror of
				https://github.com/samply/bridgehead.git
				synced 2025-11-04 16:30:18 +01:00 
			
		
		
		
	
		
			
				
	
	
		
			46 lines
		
	
	
		
			1.8 KiB
		
	
	
	
		
			YAML
		
	
	
	
	
	
			
		
		
	
	
			46 lines
		
	
	
		
			1.8 KiB
		
	
	
	
		
			YAML
		
	
	
	
	
	
version: "3.7"
 | 
						|
services:
 | 
						|
  lens:
 | 
						|
    container_name: lens_federated-search
 | 
						|
    image: docker.verbis.dkfz.de/ccp/lens:${SITE_ID}
 | 
						|
    labels:
 | 
						|
      - "traefik.enable=true"
 | 
						|
      - "traefik.http.routers.landing.rule=PathPrefix(`/`)"
 | 
						|
      - "traefik.http.services.landing.loadbalancer.server.port=3000"
 | 
						|
      - "traefik.http.routers.landing.middlewares=auth"
 | 
						|
      - "traefik.http.routers.landing.tls=true"
 | 
						|
 | 
						|
  spot:
 | 
						|
    image: samply/rustyspot:main
 | 
						|
    platform: linux/amd64
 | 
						|
    environment:
 | 
						|
      BEAM_SECRET: "${FOCUS_BEAM_SECRET_SHORT}"
 | 
						|
      BEAM_PROXY_URL: http://beam-proxy:8081
 | 
						|
      BEAM_APP_ID: "spot.${SITE_ID}.${BROKER_ID}"
 | 
						|
      CORS_ORIGIN: "https://${HOST}"
 | 
						|
      SITES: "${SITE_ID}"
 | 
						|
      TRANSFORM: LENS
 | 
						|
      BIND_ADDR: 0.0.0.0:8055
 | 
						|
      RUST_LOG: "debug"
 | 
						|
      LOG_FILE: /logs/requests.log
 | 
						|
      PROJECT: pscc
 | 
						|
    volumes:
 | 
						|
      - /etc/bridgehead/logs:/logs
 | 
						|
      - /etc/bridgehead/query:/query:ro
 | 
						|
    depends_on:
 | 
						|
      - "beam-proxy"
 | 
						|
    labels:
 | 
						|
      - "traefik.enable=true"
 | 
						|
      - "traefik.http.services.spot.loadbalancer.server.port=8055"
 | 
						|
      - "traefik.http.middlewares.corsheaders2.headers.accesscontrolallowmethods=GET,OPTIONS,POST"
 | 
						|
      - "traefik.http.middlewares.corsheaders2.headers.accesscontrolalloworiginlist=https://${HOST}"
 | 
						|
      - "traefik.http.middlewares.corsheaders2.headers.accesscontrolallowcredentials=true"
 | 
						|
      - "traefik.http.middlewares.corsheaders2.headers.accesscontrolmaxage=-1"
 | 
						|
      - "traefik.http.routers.spot.rule=Host(`${HOST}`) && PathPrefix(`/backend`)"
 | 
						|
      - "traefik.http.middlewares.stripprefix_spot.stripprefix.prefixes=/backend"
 | 
						|
      - "traefik.http.routers.spot.tls=true"
 | 
						|
      - "traefik.http.routers.spot.middlewares=corsheaders2,stripprefix_spot"
 | 
						|
  beam-proxy:
 | 
						|
    environment:
 | 
						|
      APP_spot_KEY: ${FOCUS_BEAM_SECRET_SHORT}
 |