14 lines
299 B
Plaintext
14 lines
299 B
Plaintext
version: "3.8"
|
|
services:
|
|
postgres:
|
|
image: postgres:14-alpine
|
|
restart: always
|
|
environment:
|
|
- POSTGRES_USER=root
|
|
- POSTGRES_PASSWORD=yAwAPZyyMwFOZtjKcIdLCgKHSIBczj3nkLqISUzePlaR73X
|
|
ports:
|
|
- "5432:5432"
|
|
volumes:
|
|
- db:/var/lib/postgresql/data
|
|
volumes:
|
|
db: |