This is mostly a straight forward installation process. Mealie uses Docker, so there's that…
Install Docker, with docker-compose.
Create a directory to store the docker-compose.yaml
and Mealie DB.
mkdir /opt/mealie
To install Mealie with the SQLite backend (as opposed to using PostgreSQL - compose file on official site), use the following compose file contents
bash -c "cat > /opt/mealie/docker-compose.yaml" <<EOF
---
version: "3.7"
services:
mealie:
image: ghcr.io/mealie-recipes/mealie:v1.0.0-RC1.1
container_name: mealie
ports:
- "9925:9000" #
deploy:
resources:
limits:
memory: 1000M #
volumes:
- mealie-data:/opt/mealie/data/
environment:
# Set Backend ENV Variables Here
- ALLOW_SIGNUP=true
- PUID=1000
- PGID=1000
- TZ=America/Anchorage
- MAX_WORKERS=1
- WEB_CONCURRENCY=1
- BASE_URL=https://mealie.yourdomain.com
- DEFAULT_EMAIL=mealie@yourdomain.com
- DEFAULT_GROUP=Home
restart: always
volumes:
mealie-data:
driver: local
EOF
From within the /opt/mealie/
directory, use Docker Compose to install and start Mealie
docker-compose up -d