nest-project/docker-compose.yml
2023-06-06 00:12:40 +08:00

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