run redis as service

This commit is contained in:
realaravinth 2021-06-11 20:02:08 +05:30
parent dc53cd76d4
commit ffdd1865bb
No known key found for this signature in database
GPG key ID: AD9F0F08E855ED88
3 changed files with 10 additions and 7 deletions

View file

@ -32,6 +32,10 @@ jobs:
--health-retries 5
ports:
- 5432:5432
mcaptcha-redis:
image: mcaptcha/cache
ports:
- 6379:6379
steps:
- uses: actions/checkout@v2
@ -45,9 +49,6 @@ jobs:
target
key: ${{ runner.os }}-cargo-${{ hashFiles('**/Cargo.lock') }}
- name: run mcaptcha cache redis instance
run: docker run -d -p 6379:6379 mcaptcha/cache
- uses: actions/setup-node@v2
with:
node-version: '14.x'

View file

@ -33,6 +33,11 @@ jobs:
--health-retries 5
ports:
- 5432:5432
mcaptcha-redis:
image: mcaptcha/cache
ports:
- 6379:6379
steps:
- uses: actions/checkout@v2
@ -50,9 +55,6 @@ jobs:
with:
node-version: '14.x'
- name: run mcaptcha cache redis instance
run: docker run -d -p 6379:6379 mcaptcha/cache
- name: Install JavaScript Dependencies
run: yarn install

View file

@ -46,5 +46,5 @@ pool = 4
# port = "5432"
# username = "batman"
# password = "somereallycomplicatedBatmanpassword"
url = "redis://127.0.0.1:6370"
url = "redis://127.0.0.1"
pool = 4