my personal dotfiles

updated postgres compose/env

+4 -7
+4 -7
selfhost/postgres/postgres-compose.yaml
··· 5 5 restart: unless-stopped 6 6 env_file: 7 7 - .env 8 - environment: 9 - POSTGRES_DB: ${POSTGRES_DB:?missing} 10 - POSTGRES_USER: ${POSTGRES_USER:?missing} 11 - POSTGRES_PASSWORD: ${POSTGRES_PASSWORD:?missing} 12 8 volumes: 13 9 - postgres-data:/var/lib/postgresql 14 10 ports: 15 - - "127.0.0.1:5432:5432" 11 + - 5432:5432 16 12 networks: 17 13 - holonet 14 + 18 15 volumes: 19 16 postgres-data: 17 + name: postgres-data 20 18 driver: local 21 - name: postgres-data 22 - 19 + 23 20 networks: 24 21 holonet: 25 22 external: true