34 lines
789 B
YAML
34 lines
789 B
YAML
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 |