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

15 lines
271 B
YAML
Raw Normal View History

2024-06-27 12:04:57 +00:00
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: