Skip to content

Updated Docker image #2

Updated Docker image

Updated Docker image #2

Workflow file for this run

name: service
on:
push:
paths:
- .github/workflows/service.yml
jobs:
service:
runs-on: ubuntu-latest
services:
postgres:
image: pgvector/pgvector:pg16
env:
POSTGRES_HOST_AUTH_METHOD: trust
options: >-
--health-cmd pg_isready
--health-interval 10s
--health-timeout 5s
--health-retries 5
ports:
- 5432:5432
steps:
- run: psql -h localhost -U postgres -c 'CREATE EXTENSION vector'