Skip to content

Commit af2dec2

Browse files
authored
IBX-10494: Included Postgres 18 on CI (#51)
* IBX-10494: Included Postgres 18 on CI * switched to final
1 parent a95f621 commit af2dec2

File tree

1 file changed

+21
-0
lines changed

1 file changed

+21
-0
lines changed

docker/db-postgresql18.yml

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
# Single server setup for dev
2+
3+
services:
4+
app:
5+
environment:
6+
- DATABASE_PORT=5432
7+
- DATABASE_DRIVER=pdo_pgsql
8+
- DATABASE_PLATFORM=pgsql
9+
- DATABASE_CHARSET=utf8
10+
- DATABASE_VERSION=18.0
11+
12+
db:
13+
image: postgres:18.0
14+
environment:
15+
- POSTGRES_USER=$DATABASE_USER
16+
- POSTGRES_PASSWORD=$DATABASE_PASSWORD
17+
- POSTGRES_DB=$DATABASE_NAME
18+
networks:
19+
- backend
20+
ports:
21+
- "5433:5432"

0 commit comments

Comments
 (0)