From 3dcf3faa2962ba11c90c87312f5288ca239bcb96 Mon Sep 17 00:00:00 2001 From: holzi1005 Date: Sun, 24 Nov 2024 09:46:26 +0100 Subject: [PATCH 1/6] add etherpad image --- etherpad_application_dockerfile | 2 ++ 1 file changed, 2 insertions(+) create mode 100644 etherpad_application_dockerfile diff --git a/etherpad_application_dockerfile b/etherpad_application_dockerfile new file mode 100644 index 0000000..fe0c511 --- /dev/null +++ b/etherpad_application_dockerfile @@ -0,0 +1,2 @@ +ARG VERSION=1.8.0 +FROM etherpad/etherpad:${VERSION} From bcde1ad934b761c49b318fc1fbb03d064002dfe3 Mon Sep 17 00:00:00 2001 From: holzi1005 Date: Sun, 24 Nov 2024 13:25:17 +0100 Subject: [PATCH 2/6] fix permissions --- etherpad_application_dockerfile | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/etherpad_application_dockerfile b/etherpad_application_dockerfile index fe0c511..d2b50ec 100644 --- a/etherpad_application_dockerfile +++ b/etherpad_application_dockerfile @@ -1,2 +1,9 @@ ARG VERSION=1.8.0 FROM etherpad/etherpad:${VERSION} + +USER root + +RUN chown -R etherpad:etherpad /opt/ehterpad-lite \ + && chmod -R 0750 /opt/ehterpad-lite + +USER etherpad \ No newline at end of file From 37e5f5ffd2939a76156fdcc9d3f4a6a5ad3831b5 Mon Sep 17 00:00:00 2001 From: holzi1005 Date: Sun, 24 Nov 2024 13:26:45 +0100 Subject: [PATCH 3/6] typo in dir --- etherpad_application_dockerfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/etherpad_application_dockerfile b/etherpad_application_dockerfile index d2b50ec..5868502 100644 --- a/etherpad_application_dockerfile +++ b/etherpad_application_dockerfile @@ -3,7 +3,7 @@ FROM etherpad/etherpad:${VERSION} USER root -RUN chown -R etherpad:etherpad /opt/ehterpad-lite \ - && chmod -R 0750 /opt/ehterpad-lite +RUN chown -R etherpad:etherpad /opt/etherpad-lite \ + && chmod -R 0750 /opt/etherpad-lite USER etherpad \ No newline at end of file From 8481c04426b45a4eac5c42bcfb03a2c80238b740 Mon Sep 17 00:00:00 2001 From: holzi1005 Date: Sun, 24 Nov 2024 13:32:16 +0100 Subject: [PATCH 4/6] fix permission to try --- etherpad_application_dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/etherpad_application_dockerfile b/etherpad_application_dockerfile index 5868502..f262e10 100644 --- a/etherpad_application_dockerfile +++ b/etherpad_application_dockerfile @@ -4,6 +4,6 @@ FROM etherpad/etherpad:${VERSION} USER root RUN chown -R etherpad:etherpad /opt/etherpad-lite \ - && chmod -R 0750 /opt/etherpad-lite + && chmod -R 0777 /opt/etherpad-lite USER etherpad \ No newline at end of file From 9a6c8e942d4661292b05fc8c2d2c6e5c920a2ae3 Mon Sep 17 00:00:00 2001 From: holzi1005 Date: Sun, 24 Nov 2024 13:44:35 +0100 Subject: [PATCH 5/6] fix permissions --- etherpad_application_dockerfile | 7 ------- 1 file changed, 7 deletions(-) diff --git a/etherpad_application_dockerfile b/etherpad_application_dockerfile index f262e10..fe0c511 100644 --- a/etherpad_application_dockerfile +++ b/etherpad_application_dockerfile @@ -1,9 +1,2 @@ ARG VERSION=1.8.0 FROM etherpad/etherpad:${VERSION} - -USER root - -RUN chown -R etherpad:etherpad /opt/etherpad-lite \ - && chmod -R 0777 /opt/etherpad-lite - -USER etherpad \ No newline at end of file From 8c98020fd6f703774e4eb6f4b2f764ded555bc6d Mon Sep 17 00:00:00 2001 From: holzi1005 Date: Sun, 24 Nov 2024 13:44:56 +0100 Subject: [PATCH 6/6] set default version --- etherpad_application_dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/etherpad_application_dockerfile b/etherpad_application_dockerfile index fe0c511..68493cf 100644 --- a/etherpad_application_dockerfile +++ b/etherpad_application_dockerfile @@ -1,2 +1,2 @@ -ARG VERSION=1.8.0 +ARG VERSION=2.2.6 FROM etherpad/etherpad:${VERSION}