We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 58b7804 commit 3d69598Copy full SHA for 3d69598
.github/workflows/ci.yml
@@ -32,14 +32,27 @@ jobs:
32
image: registry.gitlab.com/finestructure/spi-base:1.1.1
33
options: --privileged
34
services:
35
- postgres:
+ db-0:
36
image: postgres:16-alpine
37
env:
38
POSTGRES_DB: spi_test
39
POSTGRES_USER: spi_test
40
POSTGRES_PASSWORD: xxx
41
ports:
42
- - '5432:5432'
+ - '6000:5432'
43
+ options: >-
44
+ --health-cmd pg_isready
45
+ --health-interval 10s
46
+ --health-timeout 5s
47
+ --health-retries 5
48
+ db-1:
49
+ image: postgres:16-alpine
50
+ env:
51
+ POSTGRES_DB: spi_test
52
+ POSTGRES_USER: spi_test
53
+ POSTGRES_PASSWORD: xxx
54
+ ports:
55
+ - '6001:5432'
56
options: >-
57
--health-cmd pg_isready
58
--health-interval 10s
0 commit comments