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