From c0e33e039d37141a09b04cf636c251bcabea874d Mon Sep 17 00:00:00 2001 From: Khwezi Mngoma Date: Fri, 19 Jun 2026 15:32:56 +0200 Subject: [PATCH 1/2] Added docuseal.yml --- docker-stacks/app-server/docuseal.yml | 13 +++++++++++++ 1 file changed, 13 insertions(+) create mode 100644 docker-stacks/app-server/docuseal.yml diff --git a/docker-stacks/app-server/docuseal.yml b/docker-stacks/app-server/docuseal.yml new file mode 100644 index 0000000..f774f5e --- /dev/null +++ b/docker-stacks/app-server/docuseal.yml @@ -0,0 +1,13 @@ +services: + docuseal: + image: docuseal/docuseal:latest + restart: always + environment: + - DATABASE_URL=${DATABASE_URL} + - PORT=3000 + - HOST=${PUBLIC_URL} + - SECRET_KEY_BASE=${SECRET_KEY_BASE} + ports: + - "3000:3000" + volumes: + - ./docuseal_data:/data \ No newline at end of file From 72d1ddfce6f26796f968fe1797429890493057be Mon Sep 17 00:00:00 2001 From: Khwezi Mngoma Date: Fri, 19 Jun 2026 15:33:39 +0200 Subject: [PATCH 2/2] Added penpot.yml --- docker-stacks/app-server/penpot.yml | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) create mode 100644 docker-stacks/app-server/penpot.yml diff --git a/docker-stacks/app-server/penpot.yml b/docker-stacks/app-server/penpot.yml new file mode 100644 index 0000000..354873d --- /dev/null +++ b/docker-stacks/app-server/penpot.yml @@ -0,0 +1,21 @@ +services: + penpot-backend: + image: penpotapp/backend:latest + restart: always + environment: + - PENPOT_DATABASE_URI=${PENPOT_DATABASE_URI} + - PENPOT_REDIS_URI=${PENPOT_REDIS_URI} + - PENPOT_SECRET_KEY=${PENPOT_SECRET_KEY} + - PENPOT_PUBLIC_URI=${PENPOT_PUBLIC_URI} + ports: + - "6060:6060" + + penpot-frontend: + image: penpotapp/frontend:latest + restart: always + environment: + - PENPOT_FLAGS=enable-all-flags + ports: + - "8080:80" + depends_on: + - penpot-backend \ No newline at end of file