Intelligence

Artifacts

Browse the repository, read documents, and manage the governance folders. Source, runtime, and infrastructure are read-only.

infrastructure/compose/hq01/docker-compose.yml
896 B
services:
  hq01:
    build:
      context: /srv/aaf/repositories/aaf-holdings/hq01
    container_name: hq01
    restart: unless-stopped
    environment:
      - NODE_ENV=production
      - PORT=4000
      - HQ01_CONTENT_ROOT=/srv/aaf
    volumes:
      - /srv/aaf:/srv/aaf:ro
    labels:
      - traefik.enable=true
      - traefik.http.routers.hq01.rule=Host(`hq.agentsaf.com`)
      - traefik.http.routers.hq01.entrypoints=websecure
      - traefik.http.routers.hq01.tls.certresolver=letsencrypt
      - traefik.http.services.hq01.loadbalancer.server.port=4000
      - traefik.http.routers.hq01-http.rule=Host(`hq.agentsaf.com`)
      - traefik.http.routers.hq01-http.entrypoints=web
      - traefik.http.routers.hq01-http.middlewares=hq01-redirect
      - traefik.http.middlewares.hq01-redirect.redirectscheme.scheme=https
    networks:
      - aaf_hq

networks:
  aaf_hq:
    external: true

root · /srv/aaf