mirror of
https://github.com/hknsh/project-knedita.git
synced 2024-11-28 17:41:15 +00:00
17 lines
No EOL
275 B
YAML
17 lines
No EOL
275 B
YAML
version: '3.8'
|
|
|
|
services:
|
|
postgres:
|
|
image: postgres:alpine
|
|
restart: unless-stopped
|
|
container_name: postgres
|
|
ports:
|
|
- 5432:5432
|
|
env_file:
|
|
- .env
|
|
volumes:
|
|
- postgres:/var/lib/postgresql/data
|
|
|
|
volumes:
|
|
postgres:
|
|
name: backend-db |