nest-project/docker-compose.yml

17 lines
270 B
YAML
Raw Normal View History

2023-02-15 19:12:21 +08:00
version: '3.8'
services:
postgres:
image: postgres:13
container_name: postgres
2023-06-06 00:12:40 +08:00
restart: unless-stopped
2023-02-15 19:12:21 +08:00
ports:
- '5432:5432'
env_file:
- .env
volumes:
- postgres:/var/lib/postgresql/data
volumes:
postgres:
name: nest-db