mirror of
https://framagit.org/la-chariotte/la-chariotte.git
synced 2025-05-05 13:21:49 +02:00
13 lines
195 B
YAML
13 lines
195 B
YAML
version: '3'
|
|
|
|
services:
|
|
db:
|
|
image: postgres:13
|
|
restart: always
|
|
env_file:
|
|
- ../.env
|
|
ports:
|
|
- 5432:5432
|
|
volumes:
|
|
- ./postgres-data:/var/lib/postgresql/data
|
|
|