15 lines
470 B
YAML
15 lines
470 B
YAML
version: "3.7"
|
|
services:
|
|
isard-apps-postgresql:
|
|
image: postgres:alpine
|
|
container_name: isard-apps-postgresql
|
|
restart: unless-stopped
|
|
env_file: .env
|
|
environment:
|
|
- POSTGRES_PASSWORD=${POSTGRES_PASSWORD}
|
|
- POSTGRES_USER=${POSTGRES_USER}
|
|
volumes:
|
|
- ${DATA_FOLDER}/postgres:/var/lib/postgresql/data
|
|
- ${BUILD_ROOT_PATH}/docker/postgresql/docker-entrypoint-initdb.d:/docker-entrypoint-initdb.d
|
|
networks:
|
|
- isard_net |