Keine Beschreibung

docker-compose.yml 1.7KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263
  1. # IRIS Source Code
  2. # contact@dfir-iris.org
  3. #
  4. # This program is free software; you can redistribute it and/or
  5. # modify it under the terms of the GNU Lesser General Public
  6. # License as published by the Free Software Foundation; either
  7. # version 3 of the License, or (at your option) any later version.
  8. #
  9. # This program is distributed in the hope that it will be useful,
  10. # but WITHOUT ANY WARRANTY; without even the implied warranty of
  11. # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
  12. # Lesser General Public License for more details.
  13. #
  14. # You should have received a copy of the GNU Lesser General Public License
  15. # along with this program; if not, write to the Free Software Foundation,
  16. # Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
  17. services:
  18. rabbitmq:
  19. extends:
  20. file: docker-compose.base.yml
  21. service: rabbitmq
  22. db:
  23. extends:
  24. file: docker-compose.base.yml
  25. service: db
  26. image: ${DB_IMAGE_NAME:-ghcr.io/dfir-iris/iriswebapp_db}:${DB_IMAGE_TAG:-v2.4.20}
  27. app:
  28. extends:
  29. file: docker-compose.base.yml
  30. service: app
  31. image: ${APP_IMAGE_NAME:-ghcr.io/dfir-iris/iriswebapp_app}:${APP_IMAGE_TAG:-v2.4.20}
  32. worker:
  33. extends:
  34. file: docker-compose.base.yml
  35. service: worker
  36. image: ${APP_IMAGE_NAME:-ghcr.io/dfir-iris/iriswebapp_app}:${APP_IMAGE_TAG:-v2.4.20}
  37. nginx:
  38. extends:
  39. file: docker-compose.base.yml
  40. service: nginx
  41. image: ${NGINX_IMAGE_NAME:-ghcr.io/dfir-iris/iriswebapp_nginx}:${NGINX_IMAGE_TAG:-v2.4.20}
  42. volumes:
  43. iris-downloads:
  44. user_templates:
  45. server_data:
  46. db_data:
  47. networks:
  48. iris_backend:
  49. name: iris_backend
  50. iris_frontend:
  51. name: iris_frontend