You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
jdbc-hospital-example/docker/docker-compose.yml

15 lines
269 B

version: '3'
services:
db:
image: postgres:15-alpine
restart: always
volumes:
- ./data:/var/lib/postgresql/data
environment:
POSTGRES_DB: testdb
POSTGRES_USER: user
POSTGRES_PASSWORD: testpassword
ports:
- 5432:5432