From 19c05ac5b7d9863fedec92c073679649c6f6a5d1 Mon Sep 17 00:00:00 2001 From: Marco Malavolti <marco.malavolti@garr.it> Date: Wed, 7 Aug 2024 16:27:03 +0200 Subject: [PATCH] Add docker-compose-2.1.1.yml --- docker-compose-2.1.1.yml | 28 ++++++++++++++++++++++++++++ 1 file changed, 28 insertions(+) create mode 100644 docker-compose-2.1.1.yml diff --git a/docker-compose-2.1.1.yml b/docker-compose-2.1.1.yml new file mode 100644 index 0000000..208b6c1 --- /dev/null +++ b/docker-compose-2.1.1.yml @@ -0,0 +1,28 @@ +services: + eccs: + image: gitlab.software.geant.org:5050/edugain/eccs:2.1.1 + build: + context: . + dockerfile: Dockerfile + args: + CHROME_VERSION: 126.0.6478.126-1 + CHROMEDRIVER_VERSION: 126.0.6478.126 + PYFF_VERSION: 2.1.2 + container_name: eccs + hostname: eccs + ports: + - 80:80 + - 443:443 + volumes: + - type: bind + source: ./output + target: /home/eccs/output + - type: bind + source: ./html + target: /home/eccs/html + - type: bind + source: ./logs + target: /home/eccs/logs + - type: bind + source: ./selenium-logs + target: /home/eccs/selenium-logs -- GitLab