-
Notifications
You must be signed in to change notification settings - Fork 50
/
Copy pathdocker-compose.yml
127 lines (120 loc) · 3.9 KB
/
docker-compose.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
name: penpot
services:
penpot-frontend:
image: "penpotapp/frontend:latest"
container_name: penpot-frontend
restart: unless-stopped
ports:
- published: "9001"
target: 80
protocol: tcp
volumes:
- type: bind
source: /DATA/AppData/penpot/assets
target: /opt/data/assets
depends_on:
- penpot-backend
- penpot-exporter
networks:
- penpot
environment:
- PENPOT_FLAGS=enable-registration enable-login-with-password
penpot-backend:
image: "penpotapp/backend:latest"
container_name: penpot-backend
restart: unless-stopped
volumes:
- type: bind
source: /DATA/AppData/penpot/assets
target: /opt/data/assets
depends_on:
- penpot-postgres
- penpot-redis
networks:
- penpot
environment:
- PENPOT_FLAGS=enable-registration enable-login-with-password disable-email-verification enable-smtp enable-prepl-server disable-secure-session-cookies
- PENPOT_PUBLIC_URI=http://localhost:9001
- PENPOT_DATABASE_URI=postgresql://penpot-postgres/penpot
- PENPOT_DATABASE_USERNAME=penpot
- PENPOT_DATABASE_PASSWORD=penpot
- PENPOT_REDIS_URI=redis://penpot-redis/0
- PENPOT_ASSETS_STORAGE_BACKEND=assets-fs
- PENPOT_STORAGE_ASSETS_FS_DIRECTORY=/opt/data/assets
- PENPOT_TELEMETRY_ENABLED=true
- PENPOT_SMTP_HOST=penpot-mailcatch
- PENPOT_SMTP_PORT=1025
- PENPOT_SMTP_TLS=false
- PENPOT_SMTP_SSL=false
penpot-exporter:
image: "penpotapp/exporter:latest"
container_name: penpot-exporter
restart: unless-stopped
networks:
- penpot
environment:
- PENPOT_PUBLIC_URI=http://penpot-frontend
- PENPOT_REDIS_URI=redis://penpot-redis/0
penpot-postgres:
image: "postgres:15"
container_name: penpot-postgres
restart: unless-stopped
stop_signal: SIGINT
volumes:
- type: bind
source: /DATA/AppData/penpot/data
target: /var/lib/postgresql/data
networks:
- penpot
environment:
- POSTGRES_INITDB_ARGS=--data-checksums
- POSTGRES_DB=penpot
- POSTGRES_USER=penpot
- POSTGRES_PASSWORD=penpot
penpot-redis:
image: redis:7
container_name: penpot-redis
restart: unless-stopped
networks:
- penpot
penpot-mailcatch:
image: sj26/mailcatcher:latest
container_name: penpot-mailcatch
restart: unless-stopped
expose:
- '1025'
ports:
- published: "1080"
target: 1080
protocol: tcp
networks:
- penpot
networks:
penpot:
name: penpot
x-casaos:
architectures:
- arm64
- amd64
main: penpot-frontend
author: Cp0204
category: Developer
description:
en_us: Penpot is the first open-source design and prototyping platform meant for cross-domain teams. Designers craft beautiful interfaces with professional vector tools, while developers inspect the code in real-time.
zh_cn: Penpot是第一个开源的设计和原型平台,专为跨领域团队打造。设计人员可以使用专业的矢量工具制作精美的界面,而开发人员可以实时检查代码。
developer: Penpot
icon: https://cdn.jsdelivr.net/gh/Cp0204/CasaOS-AppStore-Play@main/Apps/penpot/icon.png
screenshot_link:
- https://cdn.jsdelivr.net/gh/Cp0204/CasaOS-AppStore-Play@main/Apps/penpot/screenshot-1.png
- https://cdn.jsdelivr.net/gh/Cp0204/CasaOS-AppStore-Play@main/Apps/penpot/screenshot-2.png
- https://cdn.jsdelivr.net/gh/Cp0204/CasaOS-AppStore-Play@main/Apps/penpot/screenshot-3.png
tagline:
en_us: The Open Source design & prototyping platform
zh_cn: 开源的设计和原型平台
thumbnail: https://cdn.jsdelivr.net/gh/Cp0204/CasaOS-AppStore-Play@main/Apps/penpot/thumbnail.png
title:
en_us: Penpot
index: /
port_map: "9001"