Commit b929ca48 authored by Johannes Bleher's avatar Johannes Bleher 💪
Browse files

Upload New File

parent 6f8131ca
Loading
Loading
Loading
Loading
+19 −0
Original line number Diff line number Diff line
# Use postgres/example user/password credentials
version: '3.1'

services:

  db:
    image: postgres
    restart: always
    volumes:
      - "./init.sh:/docker-entrypoint-initdb.d/init.sh:rw"
      - "./DATA/:/DATA/:rw"
    ports:
      - 8001:5432
    expose:
      - 8001
    environment:
      POSTGRES_PASSWORD: ""
      POSTGRES_USER: ""
      POSTGRES_DB: "aidaho"