[V1.0] Working application, added notifications.

Ready to upload to store.
This commit is contained in:
c-d-p
2025-04-27 00:39:52 +02:00
parent 04d9136b96
commit 62d6b8bdfd
86 changed files with 2250 additions and 240 deletions

View File

@@ -47,7 +47,7 @@ services:
image: postgres:15 # Use a specific version
container_name: MAIA-DB
volumes:
- ./db:/var/lib/postgresql/data # Persist data using a named volume
- db:/var/lib/postgresql/data # Persist data using a named volume
environment:
- POSTGRES_USER=${DB_USER}
- POSTGRES_PASSWORD=${DB_PASSWORD}
@@ -63,11 +63,17 @@ services:
image: redis:7 # Use a specific version
container_name: MAIA-Redis
volumes:
- ./redis_data:/data
- redis_data:/data
networks:
- maia_network
restart: unless-stopped
volumes:
db: # Named volume for PostgreSQL data
driver: local
redis_data: # Named volume for Redis data
driver: local
# ----- Network Definition -----
networks:
maia_network: # Define a custom bridge network