forked from AmIBeingObtuse/Youtubestacks
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmealie
53 lines (52 loc) · 1.49 KB
/
mealie
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
# My compose file for mealie and my youtube video which will be live from June 24th! copy below the line
# www.youtube.com/@kltechvideos/videos - this video link https://youtu.be/ifABVyhhjiE
#-------------------------------------------------------------------------------------------------------
version: "3.9" # or newer
services:
mealie:
image: ghcr.io/mealie-recipes/mealie:v1.8.0 # or your preferred version
container_name: mealie
restart: always
ports:
- 9925:9000 #
deploy:
resources:
limits:
memory: 1000M #
volumes:
- mealie-data:/app/data/
environment:
# Set Backend ENV Variables Here
ALLOW_SIGNUP: true
PUID: 1000
PGID: 1000
TZ: Europe/London
MAX_WORKERS: 1
WEB_CONCURRENCY: 1
BASE_URL: https://your.domain.com #delte if not used.
# Database Settings
DB_ENGINE: postgres
POSTGRES_USER: mealie
POSTGRES_PASSWORD: gfdhfghdgh
POSTGRES_SERVER: postgres # Use the container name
POSTGRES_PORT: 5432
POSTGRES_DB: mealie_db # Use your Mealie database name
networks:
- mealie-network
postgres:
container_name: postgres
image: postgres:15
restart: always
volumes:
- mealie-pgdata:/var/lib/postgresql/data
environment:
POSTGRES_PASSWORD: gfdhfghdgh
POSTGRES_USER: mealie
POSTGRES_DB: mealie_db
networks:
- mealie-network
volumes:
mealie-data: null
mealie-pgdata: null
networks:
mealie-network: null