Skip to content

Commit

Permalink
ci: Test using upstream Postgres container, v14
Browse files Browse the repository at this point in the history
  • Loading branch information
atodorov committed Apr 17, 2024
1 parent fbfaa1a commit 3d8b902
Showing 1 changed file with 6 additions and 5 deletions.
11 changes: 6 additions & 5 deletions docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,16 +3,17 @@ version: '2'
services:
db:
container_name: postgresql_database
image: centos/postgresql-12-centos7
image: postgres:14
restart: always
ports:
- 5432:5432
volumes:
- postgresql_database_data:/var/lib/pgsql/data
- postgresql_database_data:/var/lib/postgresql/data
environment:
POSTGRESQL_DATABASE: test_project
POSTGRESQL_USER: kiwi
POSTGRESQL_PASSWORD: kiwi
POSTGRES_DB: test_project
POSTGRES_USER: kiwi
POSTGRES_PASSWORD: kiwi

pgadmin:
container_name: pgadmin
image: dpage/pgadmin4
Expand Down

0 comments on commit 3d8b902

Please sign in to comment.