Files
containers/bitnami/postgresql/docker-compose.yml
2023-06-27 17:17:49 +02:00

19 lines
334 B
YAML

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