File tree 2 files changed +6
-5
lines changed
2 files changed +6
-5
lines changed Original file line number Diff line number Diff line change 36
36
BUNDLE_GEMFILE : gemfiles/${{ matrix.gemfile }}.gemfile
37
37
PREPARED_STATEMENTS : ${{ matrix.prepared_statements && '1' }}
38
38
steps :
39
- - uses : actions/checkout@v2
39
+ - uses : actions/checkout@v3
40
40
- run : |
41
41
docker-compose up -d
42
42
- uses : ruby/setup-ruby@v1
Original file line number Diff line number Diff line change @@ -2,21 +2,22 @@ version: '2.1'
2
2
3
3
services :
4
4
master :
5
- image : ' citusdata/citus:7.5.1'
5
+ container_name : " ${COMPOSE_PROJECT_NAME:-citus}_master"
6
+ image : ' citusdata/citus:${CITUS_VERSION:-11.2}'
6
7
ports : ['5600:5432']
7
8
labels : ['com.citusdata.role=Master']
8
9
volumes : ['/var/run/postgresql']
9
10
manager :
10
11
container_name : " ${COMPOSE_PROJECT_NAME:-citus}_manager"
11
- image : ' citusdata/membership-manager:0.1 .0'
12
+ image : ' citusdata/membership-manager:0.2 .0'
12
13
volumes : ['/var/run/docker.sock:/var/run/docker.sock']
13
14
depends_on : { master: { condition: service_healthy } }
14
15
worker1 :
15
- image : ' citusdata/citus:7.5.1 '
16
+ image : ' citusdata/citus:${CITUS_VERSION:-11.2} '
16
17
labels : ['com.citusdata.role=Worker']
17
18
depends_on : { manager: { condition: service_healthy } }
18
19
worker2 :
19
- image : ' citusdata/citus:7.5.1 '
20
+ image : ' citusdata/citus:${CITUS_VERSION:-11.2} '
20
21
labels : ['com.citusdata.role=Worker']
21
22
depends_on : { manager: { condition: service_healthy } }
22
23
healthcheck :
You can’t perform that action at this time.
0 commit comments