Skip to content

Commit 0d0673d

Browse files
committed
temporal example: fixing yaml linter errors
1 parent e107e12 commit 0d0673d

File tree

1 file changed

+9
-11
lines changed

1 file changed

+9
-11
lines changed
Lines changed: 9 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -1,27 +1,25 @@
1+
---
12
version: "3.8"
23

34
services:
45
postgres:
5-
image: postgres:15
6-
container_name: dev-postgres
6+
image: "postgres:15"
7+
container_name: "dev-postgres"
78
environment:
8-
POSTGRES_USER: dev
9-
POSTGRES_PASSWORD: abc123
10-
POSTGRES_DB: blog_authors
9+
POSTGRES_USER: "dev"
10+
POSTGRES_PASSWORD: "abc123"
11+
POSTGRES_DB: "blog_authors"
1112
ports:
1213
- "5432:5432"
1314

1415
spicedb:
15-
image: authzed/spicedb:v1.34.0
16-
container_name: dev-spicedb
16+
image: "authzed/spicedb:v1.34.0"
17+
container_name: "dev-spicedb"
1718
command: [
1819
"serve",
1920
"--grpc-preshared-key", "localkey",
2021
]
2122
ports:
2223
- "50051:50051" # gRPC
2324
depends_on:
24-
- postgres
25-
26-
27-
25+
- "postgres"

0 commit comments

Comments
 (0)