Odoo18-Base/database/docker-compose.yml
hoangvv 833bc2d8dc
All checks were successful
Setup Native Action / native (3.12.7) (push) Has been skipped
Setup Native Action / docker (3.12.7) (push) Has been skipped
update
2025-02-13 10:39:58 +07:00

16 lines
363 B
YAML

version: '3.8'
services:
db-test:
image: postgres:16
user: root
environment:
- POSTGRES_USER=${PG_USER:-changeme}
- POSTGRES_PASSWORD=${PG_PASS:-password}
- POSTGRES_DB=${PG_DB:-postgres}
restart: always
ports:
- ${PG_PORT:-5432}:5432
volumes:
- ${PG_DATA:-./postgresql}:/var/lib/postgresql/data