This repository has been archived on 2024-08-23. You can view files and clone it, but cannot push or open issues or pull requests.
lessons/sql/compose.yaml
2023-07-16 13:23:25 +00:00

13 lines
254 B
YAML

services:
db:
image: postgres
environment:
- POSTGRES_USER=tester
- POSTGRES_PASSWORD=example123!
- POSTGRES_DB=testing
ports:
- 5432:5432/tcp
volumes:
- ./data:/var/lib/postgresql/data
restart: always