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

16 lines
317 B
YAML
Raw Normal View History

2024-06-27 12:04:57 +00:00
services:
db:
2024-07-31 16:17:59 +00:00
image: ghcr.io/fboulnois/pg_uuidv7:1.5.0
2024-06-27 12:04:57 +00:00
environment:
- POSTGRES_USER=tester
- POSTGRES_PASSWORD=testing123!
- POSTGRES_DB=testing
ports:
- 5432:5432
volumes:
- postgres_data:/var/lib/postgresql/data
2024-08-06 13:00:38 +00:00
restart: unless-stopped
2024-06-27 12:04:57 +00:00
volumes:
postgres_data: