app.json 633 B

1234567891011121314151617181920
  1. {
  2. "name": "imgproxy",
  3. "description": "Fast and secure standalone server for resizing and converting remote images.",
  4. "keywords": ["image", "resize-images", "crop-image", "microservice", "docker", "jpeg", "png", "libvips"],
  5. "repository": "https://github.com/DarthSim/imgproxy",
  6. "stack": "container",
  7. "env": {
  8. "IMGPROXY_KEY": {
  9. "description": "Hex-encoded secret key for signing URLs.",
  10. "value": "",
  11. "required": false
  12. },
  13. "IMGPROXY_SALT": {
  14. "description": "Hex-encoded secret salt for signing URLs.",
  15. "value": "",
  16. "required": false
  17. }
  18. },
  19. "image": "darthsim/imgproxy"
  20. }