Added penpot.yml

This commit is contained in:
2026-06-19 15:33:39 +02:00
parent c0e33e039d
commit 72d1ddfce6
+21
View File
@@ -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