render.yaml raw

   1  services:
   2    - type: web
   3      runtime: image
   4      name: albyhub
   5      image:
   6        url: ghcr.io/getalby/hub:latest
   7      numInstances: 1
   8      region: frankfurt # Default: oregon
   9      plan: starter
  10      disk:
  11        name: data
  12        mountPath: /data
  13        sizeGB: 2
  14      autoDeploy: false
  15      envVars:
  16        - key: WORK_DIR
  17          value: /data/albyhub
  18        - key: LN_BACKEND_TYPE
  19          value: PHOENIX
  20        - key: PHOENIXD_AUTHORIZATION
  21          value: dcf0cf3501c04f97890e3bb3204f94f60d6b99d270cc8c40dfd390cced2f3c11
  22        - key: PHOENIXD_ADDRESS
  23          fromService:
  24            name: phoenixd
  25            type: pserv
  26            property: hostport
  27    - type: pserv
  28      runtime: image
  29      name: phoenixd
  30      image:
  31        url: ghcr.io/sethforprivacy/phoenixd:latest
  32      numInstances: 1
  33      region: frankfurt # Default: oregon
  34      plan: starter
  35      disk:
  36        name: data
  37        mountPath: /data
  38        sizeGB: 2
  39      autoDeploy: false
  40      dockerCommand: /phoenix/bin/phoenixd --agree-to-terms-of-service --http-bind-ip 0.0.0.0 --http-password=dcf0cf3501c04f97890e3bb3204f94f60d6b99d270cc8c40dfd390cced2f3c11
  41      envVars:
  42        - key: PHOENIX_DATADIR
  43          value: /data/phoenixd
  44