17 lines
270 B
YAML
17 lines
270 B
YAML
version: '3.8'
|
|
services:
|
|
postgres:
|
|
image: postgres:13
|
|
container_name: postgres
|
|
restart: unless-stopped
|
|
ports:
|
|
- '5432:5432'
|
|
env_file:
|
|
- .env
|
|
volumes:
|
|
- postgres:/var/lib/postgresql/data
|
|
|
|
volumes:
|
|
postgres:
|
|
name: nest-db
|