first commit

This commit is contained in:
2026-03-10 07:59:04 +01:00
parent 07337a1b4a
commit 4321b92003
15 changed files with 637 additions and 0 deletions

View File

@@ -0,0 +1,18 @@
# POSTGRES docker-compose file
services:
postgres:
container_name: postgres
image: postgres:14
restart: always
networks:
- localnet
ports:
- 5432:5432
environment:
POSTGRES_DB: homeassistant
POSTGRES_USER: ha_user
POSTGRES_PASSWORD: password
networks:
localnet:
driver: bridge