Added shared network and exporter to penpot

This commit is contained in:
2026-06-19 17:00:14 +02:00
parent 9e0324d9c3
commit 88e3af666c
+13
View File
@@ -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"
depends_on:
- penpot-backend
- penpot-exporter