From 979129f52c966e62daca740732312bd78d792940 Mon Sep 17 00:00:00 2001 From: Eric Schubert Date: Tue, 5 Apr 2022 10:17:21 +0200 Subject: [PATCH] [chore] fix two issues with docker dev - set default for OPENPROJECT_EDITION - fix default path for ckeditor volume - remove worker service from dependency --- .env.example | 5 ++++- docker-compose.yml | 1 - 2 files changed, 4 insertions(+), 2 deletions(-) diff --git a/.env.example b/.env.example index 23ed93cb3e..f4efd0a7bc 100644 --- a/.env.example +++ b/.env.example @@ -35,11 +35,14 @@ LOCAL_DEV_CHECK=1 # Set this to your ckeditor build output directory (which includes ckeditor.js) if you # want to develop ckeditor locally. -CKEDITOR_BUILD_DIR=frontend/src/vendor/ckeditor/ +CKEDITOR_BUILD_DIR=./frontend/src/vendor/ckeditor/ # This is the host from which you will be accessing the development servers locally PUBLIC_HOST=localhost +# Select edition from: ['standard','bim'] +OPENPROJECT_EDITION=standard + HOST=0.0.0.0 PORT=1337 diff --git a/docker-compose.yml b/docker-compose.yml index e022796664..33f3aa3090 100644 --- a/docker-compose.yml +++ b/docker-compose.yml @@ -63,7 +63,6 @@ services: depends_on: - db - cache - - worker worker: <<: *backend