digitaldemocratic/docker-compose-parts/postgresql.yml

14 lines
342 B
YAML

version: "3.6"
services:
isard-sso-postgresql:
image: postgres:alpine
container_name: isard-sso-postgresql
restart: unless-stopped
env_file:
- .env
volumes:
- ${DB_FOLDER}/postgres:/var/lib/postgresql/data
- ${BUILD_ROOT_PATH}/init/databases:/docker-entrypoint-initdb.d
networks:
- isard_net