From 88e3af666cc44481888def3e2f090e0e4f0f00b9 Mon Sep 17 00:00:00 2001 From: Khwezi Mngoma Date: Fri, 19 Jun 2026 17:00:14 +0200 Subject: [PATCH] Added shared network and exporter to penpot --- docker-stacks/app-server/penpot.yml | 17 +++++++++++++++-- 1 file changed, 15 insertions(+), 2 deletions(-) diff --git a/docker-stacks/app-server/penpot.yml b/docker-stacks/app-server/penpot.yml index 7155c4a..6f10772 100644 --- a/docker-stacks/app-server/penpot.yml +++ b/docker-stacks/app-server/penpot.yml @@ -2,6 +2,8 @@ services: penpot-backend: image: penpotapp/backend:latest restart: always + networks: + - penpot-net environment: - PENPOT_DATABASE_URI=${PENPOT_DATABASE_URI} - PENPOT_REDIS_URI=${PENPOT_REDIS_URI} @@ -10,12 +12,23 @@ services: ports: - "6060:6060" + penpot-exporter: + image: penpotapp/exporter:latest + restart: always + networks: + - penpot-net + environment: + - PENPOT_PUBLIC_URI=${PENPOT_PUBLIC_URI} + penpot-frontend: image: penpotapp/frontend:latest restart: always + networks: + - penpot-net environment: - PENPOT_FLAGS=enable-all-flags ports: - - "8084:80" + - "8084:80" depends_on: - - penpot-backend \ No newline at end of file + - penpot-backend + - penpot-exporter \ No newline at end of file