From d1f82df93603d7c4d7bbb53dcc26eea87aca36a7 Mon Sep 17 00:00:00 2001 From: Tarek Al-Qarqaz Date: Sun, 31 Mar 2024 04:47:15 +0000 Subject: [PATCH] change: reverted BASE_URL value, removed note, removed incorrect lines --- .../documentation/getting-started/installation/sqlite.md | 7 +------ 1 file changed, 1 insertion(+), 6 deletions(-) diff --git a/docs/docs/documentation/getting-started/installation/sqlite.md b/docs/docs/documentation/getting-started/installation/sqlite.md index 91436f246a26..d972809ffe00 100644 --- a/docs/docs/documentation/getting-started/installation/sqlite.md +++ b/docs/docs/documentation/getting-started/installation/sqlite.md @@ -9,7 +9,6 @@ SQLite is a popular, open source, self-contained, zero-configuration database th **For Environment Variable Configuration, see** [Backend Configuration](./backend-config.md) ```yaml ---- services: mealie: image: ghcr.io/mealie-recipes/mealie:v1.3.2 # (3) @@ -31,10 +30,7 @@ services: PGID: 1000 MAX_WORKERS: 1 WEB_CONCURRENCY: 1 - BASE_URL: http://localhost # (4) - depends_on: - postgres: - condition: service_healthy + BASE_URL: https://mealie.yourdomain.com volumes: mealie-data: @@ -45,4 +41,3 @@ volumes: 1. To access the mealie interface you only need to expose port 9000 on the container. Here we expose port 9925 on the host, but feel free to change this to any port you like. 2. Setting an explicit memory limit is recommended. Python can pre-allocate larger amounts of memory than is necessary if you have a machine with a lot of RAM. This can cause the container to idle at a high memory usage. Setting a memory limit will improve idle performance. 3. You should double check this value isn't out of date when setting up for the first time; check the README and use the value from the "latest release" badge at the top - the format should be `vX.Y.Z`. Whilst a 'latest' tag is available, the Mealie team advises specifying a specific version tag and consciously updating to newer versions when you have time to read the release notes and ensure you follow any manual actions required (which should be rare). -4. You should replace this with your domain eg. mealie.yourdomain.com