We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 0adcf58 commit 24b01adCopy full SHA for 24b01ad
.github/workflows/ci.yml
@@ -50,13 +50,9 @@ jobs:
50
test:
51
name: test
52
runs-on: ubuntu-latest
53
- services:
54
- postgres:
55
- image: sfackler/rust-postgres-test:6
56
- ports:
57
- - 5433:5433
58
steps:
59
- uses: actions/checkout@v2
+ - run: docker compose up -d
60
- uses: sfackler/actions/rustup@master
61
with:
62
version: 1.51.0
docker-compose.yml
@@ -1,6 +1,10 @@
1
version: '2'
2
services:
3
postgres:
4
- image: "sfackler/rust-postgres-test:6"
+ image: postgres:14
5
ports:
6
+ - 5433:5433
7
+ volumes:
8
+ - ./docker/sql_setup.sh:/docker-entrypoint-initdb.d/sql_setup.sh
9
+ environment:
10
+ POSTGRES_PASSWORD: postgres
docker/Dockerfile
0 commit comments