Compare commits
7
Commits
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
af1739b30d | ||
|
|
7daccdf71a | ||
|
|
cc75409d4b | ||
|
|
9092880b3e | ||
|
|
08c912b933 | ||
|
|
e126ce37af | ||
|
|
da83d83d9f |
@@ -1,4 +1,7 @@
|
|||||||
# Bragi-Local
|
# Bragi-Local
|
||||||
|
|
||||||
Services:
|
My Compose Stacks for all my Docker Services running on my Local Server
|
||||||
- Lubelogger
|
|
||||||
|
06_maintanance:
|
||||||
|
- Lubelogger
|
||||||
|
- Postgresql for Lubelogger
|
||||||
+43
-22
@@ -1,32 +1,53 @@
|
|||||||
services:
|
services:
|
||||||
lubelogger:
|
mealie:
|
||||||
image: ghcr.io/hargata/lubelogger:latest
|
image: ghcr.io/mealie-recipes/mealie:v2.8.0
|
||||||
build: .
|
container_name: mealie
|
||||||
restart: unless-stopped
|
restart: always
|
||||||
|
# ports:
|
||||||
|
# - 9925:9000
|
||||||
|
deploy:
|
||||||
|
resources:
|
||||||
|
limits:
|
||||||
|
memory: 1000M #
|
||||||
networks:
|
networks:
|
||||||
- bragi-local
|
- bragi-local
|
||||||
volumes:
|
volumes:
|
||||||
- /opt/06_maintanance/data:/App/data
|
- /home/shrek/docker/stack/mealie/mealie-data:/app/data/
|
||||||
- /opt/06_maintanance/keys:/root/.aspnet/DataProtection-Keys
|
|
||||||
# ports:
|
|
||||||
# - 8082:8080
|
|
||||||
postgres:
|
|
||||||
image: postgres:14
|
|
||||||
restart: unless-stopped
|
|
||||||
networks:
|
|
||||||
- bragi-local
|
|
||||||
environment:
|
environment:
|
||||||
POSTGRES_USER: lubelogger
|
ALLOW_SIGNUP: "false"
|
||||||
POSTGRES_PASSWORD: lubepass
|
TZ: Europe/Berlin
|
||||||
POSTGRES_DB: lubelogger
|
DB_ENGINE: postgres
|
||||||
|
POSTGRES_USER: mealie
|
||||||
|
POSTGRES_PASSWORD: mealie
|
||||||
|
POSTGRES_SERVER: postgres
|
||||||
|
POSTGRES_PORT: 5432
|
||||||
|
POSTGRES_DB: mealie
|
||||||
|
depends_on:
|
||||||
|
postgres:
|
||||||
|
condition: service_healthy
|
||||||
|
postgres:
|
||||||
|
networks:
|
||||||
|
- bragi-local
|
||||||
|
container_name: 04_groceries_postgres
|
||||||
|
image: postgres:15
|
||||||
|
restart: always
|
||||||
volumes:
|
volumes:
|
||||||
- /opt/06_maintanance/init.sql:/docker-entrypoint-initdb.d/init.sql
|
- /home/shrek/docker/stack/mealie/mealie-pgdata:/var/lib/postgresql/data
|
||||||
- /opt/06_maintanance/postgres:/var/lib/postgresql/data
|
environment:
|
||||||
- /etc/localtime:/etc/localtime:ro
|
POSTGRES_PASSWORD: mealie
|
||||||
|
POSTGRES_USER: mealie
|
||||||
|
PGUSER: mealie
|
||||||
|
healthcheck:
|
||||||
|
test:
|
||||||
|
- CMD
|
||||||
|
- pg_isready
|
||||||
|
interval: 30s
|
||||||
|
timeout: 20s
|
||||||
|
retries: 3
|
||||||
volumes:
|
volumes:
|
||||||
data: null
|
mealie-data: null
|
||||||
keys: null
|
mealie-pgdata: null
|
||||||
postgres: null
|
|
||||||
networks:
|
networks:
|
||||||
bragi-local:
|
bragi-local:
|
||||||
external: true
|
external: true
|
||||||
Reference in New Issue
Block a user