version: '3.8' services: postgres: container_name: postgres_app image: postgres:15.5-alpine3.19 volumes: - bizmatch_volume:/var/lib/postgresql/data environment: POSTGRES_DB: ${POSTGRES_DB} POSTGRES_USER: ${POSTGRES_USER} POSTGRES_PASSWORD: ${POSTGRES_PASSWORD} ports: - "5432:5432" networks: - bizmatch networks: bizmatch: external: true volumes: bizmatch_volume: external: true