docker-compose.yml raw

   1  services:
   2    albyhub:
   3      # you can manually specify the platform if you use something other than linux/amd64,linux/arm64 e.g.
   4      #platform: linux/arm64/v8
   5      container_name: albyhub
   6      image: ghcr.io/getalby/hub:latest
   7      volumes:
   8        - ./albyhub-data:/data
   9      ports:
  10        - "8080:8080"
  11      environment:
  12        - WORK_DIR=/data/albyhub
  13      stop_grace_period: 300s
  14