Skip to content
This repository was archived by the owner on Oct 9, 2025. It is now read-only.

Commit ed9cfba

Browse files
authored
Merge pull request #30 from Phala-Network/hash/fix-eliza-template
Hash/fix eliza template
2 parents fce0bdd + 6fc14c5 commit ed9cfba

File tree

3 files changed

+6
-5
lines changed

3 files changed

+6
-5
lines changed

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "phala",
3-
"version": "1.0.13",
3+
"version": "1.0.14",
44
"description": "CLI for Managing Phala Cloud Services",
55
"author": {
66
"name": "Phala Network",

src/index.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ async function main() {
1919
.description(
2020
`${logo}\nPhala Cloud CLI - Manage your Phala Cloud Deployments`,
2121
)
22-
.version("v1.0.13")
22+
.version("v1.0.14")
2323
.addCommand(authCommands)
2424
.addCommand(cvmsCommand)
2525
.addCommand(dockerCommands)

src/utils/constants.ts

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -55,9 +55,9 @@ services:
5555
volumes:
5656
- postgres-data:/var/lib/postgresql/data:rw
5757
ports:
58-
- "127.0.0.1:5432:5432"
58+
- '127.0.0.1:5432:5432'
5959
healthcheck:
60-
test: ["CMD-SHELL", "pg_isready -U \${POSTGRES_USER} -d \${POSTGRES_DB}"]
60+
test: ['CMD-SHELL', 'pg_isready -U \$\${POSTGRES_USER} -d \$\${POSTGRES_DB}']
6161
interval: 5s
6262
timeout: 5s
6363
retries: 5
@@ -73,7 +73,8 @@ services:
7373
{{#each envVars}} - {{{this}}}
7474
{{/each}}
7575
ports:
76-
- "3000:3000"
76+
- '3000:3000'
77+
- '50000-50100:50000-50100/udp'
7778
depends_on:
7879
postgres:
7980
condition: service_healthy

0 commit comments

Comments
 (0)