mirror of
https://github.com/strapi/strapi.git
synced 2025-07-24 17:40:18 +00:00
15 lines
274 B
YAML
15 lines
274 B
YAML
![]() |
version: '3'
|
||
|
|
||
|
services:
|
||
|
postgres:
|
||
|
image: postgres
|
||
|
restart: always
|
||
|
volumes:
|
||
|
- ./data/postgresql:/var/lib/postgresql/data
|
||
|
environment:
|
||
|
POSTGRES_USER: strapi
|
||
|
POSTGRES_PASSWORD: strapi
|
||
|
POSTGRES_DB: strapi
|
||
|
ports:
|
||
|
- '5432:5432'
|