compose.yaml
| 1 | services: |
| 2 | zbin: |
| 3 | build: |
| 4 | context: . |
| 5 | volumes: |
| 6 | - ./db:/app/db |
| 7 | ports: |
| 8 | - 3000:3000 |
| 9 | environment: |
| 10 | # See README for details. All optional. |
| 11 | # MAX_UPLOAD_BYTES: "104857600" # 100 MiB |
| 12 | # MAX_TOTAL_BYTES: "10737418240" # cap total stored content at 10 GiB |
| 13 | # MAX_AGE_MINUTES: "10080" # auto-delete after 7 days |
| 14 | # UPLOAD_COOLDOWN_SECONDS: "10" # per-IP upload cooldown |
| 15 | # DECRYPT_COOLDOWN_SECONDS: "2" # per-IP server-side decryption cooldown |
| 16 | # BEHIND_PROXY: "true" # trust forwarded headers + Secure cookies (TLS reverse proxy) |
| 17 |