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