From d54915d70bbcaa10ce78aa33f22c64aafe3b2095 Mon Sep 17 00:00:00 2001 From: jld3103 Date: Mon, 28 Aug 2023 08:43:50 +0200 Subject: [PATCH] chore(tool): Cleanup dev Dockerfile Signed-off-by: jld3103 --- tool/Dockerfile.dev | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/tool/Dockerfile.dev b/tool/Dockerfile.dev index eb80ba22..d37f3858 100644 --- a/tool/Dockerfile.dev +++ b/tool/Dockerfile.dev @@ -12,9 +12,9 @@ RUN OC_PASS="user1" ./occ user:add --password-from-env --display-name "User One" RUN OC_PASS="user2" ./occ user:add --password-from-env --display-name "User Two" user2 RUN OC_PASS="demo" ./occ user:add --password-from-env --display-name "Demo" demo -RUN ./occ app:install news --force --allow-unstable # 21.2.0 -RUN ./occ app:install notes --force --allow-unstable # 4.8.0 -RUN ./occ app:install uppush --force --allow-unstable # 1.4.0 +RUN ./occ app:install --force --allow-unstable news +RUN ./occ app:install --force --allow-unstable notes +RUN ./occ app:install --force --allow-unstable uppush RUN ./occ app:enable password_policy RUN (sh /entrypoint.sh php -S 0.0.0.0:8080 &) && \