@pizzapi/cli-win32-x64 0.2.2 → 0.2.3-dev.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/bin/pizza.exe +0 -0
- package/bin/templates/compose.yml.template +26 -0
- package/package.json +1 -1
package/bin/pizza.exe
CHANGED
|
Binary file
|
|
@@ -0,0 +1,26 @@
|
|
|
1
|
+
# Auto-generated by `pizza web` — regenerated on each run.
|
|
2
|
+
# For custom overrides, create a compose.override.yml next to this file.
|
|
3
|
+
services:
|
|
4
|
+
redis:
|
|
5
|
+
image: redis:7-alpine
|
|
6
|
+
command: ["redis-server", "--save", "", "--appendonly", "no"]
|
|
7
|
+
restart: unless-stopped
|
|
8
|
+
|
|
9
|
+
server:
|
|
10
|
+
build:
|
|
11
|
+
context: {{REPO_PATH}}
|
|
12
|
+
dockerfile: Dockerfile
|
|
13
|
+
ports:
|
|
14
|
+
- "{{PORT}}:7492"
|
|
15
|
+
environment:
|
|
16
|
+
- PORT=7492
|
|
17
|
+
- PIZZAPI_REDIS_URL=redis://redis:6379
|
|
18
|
+
- BETTER_AUTH_SECRET={{BETTER_AUTH_SECRET}}
|
|
19
|
+
- VAPID_PUBLIC_KEY={{VAPID_PUBLIC_KEY}}
|
|
20
|
+
- VAPID_PRIVATE_KEY={{VAPID_PRIVATE_KEY}}
|
|
21
|
+
- VAPID_SUBJECT={{VAPID_SUBJECT}}
|
|
22
|
+
{{EXTRA_ORIGINS_LINE}} volumes:
|
|
23
|
+
- {{DATA_DIR}}:/app/data
|
|
24
|
+
depends_on:
|
|
25
|
+
- redis
|
|
26
|
+
restart: unless-stopped
|