File size: 242 Bytes
afa4de7 | 1 2 3 4 5 6 7 8 9 10 11 12 13 | version: '3.8'
services:
postgres:
image: postgres:15-alpine
environment:
POSTGRES_USER: testuser
POSTGRES_PASSWORD: testpass
POSTGRES_DB: testdb
ports:
- "5432:5432"
tmpfs: /var/lib/postgresql/data
|