Files
automation/docker-stacks/app-server/penpot.yml
T
2026-06-19 17:01:26 +02:00

38 lines
837 B
YAML

networks:
penpot-net:
driver: bridge
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}
- PENPOT_SECRET_KEY=${PENPOT_SECRET_KEY}
- PENPOT_PUBLIC_URI=${PENPOT_PUBLIC_URI}
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