19 lines
348 B
YAML
19 lines
348 B
YAML
# Copyright VMware, Inc.
|
|
# SPDX-License-Identifier: APACHE-2.0
|
|
|
|
version: '2'
|
|
|
|
services:
|
|
supabase-postgres:
|
|
image: docker.io/bitnami/supabase-postgres:15
|
|
ports:
|
|
- '5432:5432'
|
|
volumes:
|
|
- 'postgresql_data:/bitnami/postgresql'
|
|
environment:
|
|
- 'ALLOW_EMPTY_PASSWORD=yes'
|
|
|
|
volumes:
|
|
postgresql_data:
|
|
driver: local
|