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.
project/compose.yaml
2024-07-27 16:41:43 +03:00

15 lines
271 B
YAML

services:
db:
image: postgres:alpine
environment:
- POSTGRES_USER=tester
- POSTGRES_PASSWORD=testing123!
- POSTGRES_DB=testing
ports:
- 5432:5432
volumes:
- postgres_data:/var/lib/postgresql/data
volumes:
postgres_data: