Skip to content

Commit e3dcc7d

Browse files
committed
Updates citus versions and actions version
1 parent f8b9324 commit e3dcc7d

File tree

2 files changed

+6
-5
lines changed

2 files changed

+6
-5
lines changed

Diff for: .github/workflows/CI.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ jobs:
3636
BUNDLE_GEMFILE: gemfiles/${{ matrix.gemfile }}.gemfile
3737
PREPARED_STATEMENTS: ${{ matrix.prepared_statements && '1' }}
3838
steps:
39-
- uses: actions/checkout@v2
39+
- uses: actions/checkout@v3
4040
- run: |
4141
docker-compose up -d
4242
- uses: ruby/setup-ruby@v1

Diff for: docker-compose.yml

+5-4
Original file line numberDiff line numberDiff line change
@@ -2,21 +2,22 @@ version: '2.1'
22

33
services:
44
master:
5-
image: 'citusdata/citus:7.5.1'
5+
container_name: "${COMPOSE_PROJECT_NAME:-citus}_master"
6+
image: 'citusdata/citus:${CITUS_VERSION:-11.2}'
67
ports: ['5600:5432']
78
labels: ['com.citusdata.role=Master']
89
volumes: ['/var/run/postgresql']
910
manager:
1011
container_name: "${COMPOSE_PROJECT_NAME:-citus}_manager"
11-
image: 'citusdata/membership-manager:0.1.0'
12+
image: 'citusdata/membership-manager:0.2.0'
1213
volumes: ['/var/run/docker.sock:/var/run/docker.sock']
1314
depends_on: { master: { condition: service_healthy } }
1415
worker1:
15-
image: 'citusdata/citus:7.5.1'
16+
image: 'citusdata/citus:${CITUS_VERSION:-11.2}'
1617
labels: ['com.citusdata.role=Worker']
1718
depends_on: { manager: { condition: service_healthy } }
1819
worker2:
19-
image: 'citusdata/citus:7.5.1'
20+
image: 'citusdata/citus:${CITUS_VERSION:-11.2}'
2021
labels: ['com.citusdata.role=Worker']
2122
depends_on: { manager: { condition: service_healthy } }
2223
healthcheck:

0 commit comments

Comments
 (0)