Merge pull request #3014 from cmintey/v1-doc-updates

Update docs to remove any mention of upcoming v1 release
This commit is contained in:
boc-the-git 2024-01-21 06:26:06 +11:00 committed by GitHub
commit b51cd5d1c2
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
5 changed files with 4 additions and 12 deletions

View File

@ -113,8 +113,6 @@ We also provide versioned containers that allow to pin to a specific release. Ea
`ghcr.io/mealie-recipes/mealie:latest` `ghcr.io/mealie-recipes/mealie:latest`
_Note: This tag is not yet available; it will be available with the v1 stable release_
The latest tag provides the latest released image of Mealie. The latest tag provides the latest released image of Mealie.
--- ---

View File

@ -9,7 +9,7 @@ PostgreSQL might be considered if you need to support many concurrent users. In
version: "3.7" version: "3.7"
services: services:
mealie: mealie:
image: ghcr.io/mealie-recipes/mealie:v1.0.0-RC2 image: ghcr.io/mealie-recipes/mealie:latest
container_name: mealie container_name: mealie
ports: ports:
- "9925:9000" - "9925:9000"

View File

@ -1,7 +1,7 @@
# Installing with SQLite # Installing with SQLite
!!! Warning !!! Warning
If you're plannin on deploying and using Network Attached Storage with Mealie, you should use [Postgres](./postgres.md) instead of SQLite. SQLite is not designed to be used with Network Attached Storage and can cause data corruption, or locked database errors If you're planning on deploying and using Network Attached Storage with Mealie, you should use [Postgres](./postgres.md) instead of SQLite. SQLite is not designed to be used with Network Attached Storage and can cause data corruption, or locked database errors
SQLite is a popular, open source, self-contained, zero-configuration database that is the ideal choice for Mealie when you have 1-20 Users. Below is a ready to use docker-compose.yaml file for deploying Mealie on your server. SQLite is a popular, open source, self-contained, zero-configuration database that is the ideal choice for Mealie when you have 1-20 Users. Below is a ready to use docker-compose.yaml file for deploying Mealie on your server.
@ -13,7 +13,7 @@ SQLite is a popular, open source, self-contained, zero-configuration database th
version: "3.7" version: "3.7"
services: services:
mealie: mealie:
image: ghcr.io/mealie-recipes/mealie:v1.0.0-RC2 image: ghcr.io/mealie-recipes/mealie:latest
container_name: mealie container_name: mealie
ports: ports:
- "9925:9000" # (1) - "9925:9000" # (1)

View File

@ -1,11 +1,5 @@
# About The Project # About The Project
!!! warning "Mealie v1 Beta Release"
This documentation is for the Mealie v1 Beta release and is not final. As such, it may contain incomplete or incorrect information. You should understand that installing Mealie v1 Beta is a work in progress and while we've committed to maintaining the database schema and provided migrations, we are still in the process of adding new features, and robust testing to ensure the application works as expected.
You should likely find bugs, errors, and unfinished pages within the application. To find the current status of the release you can checkout the [project on github](https://github.com/mealie-recipes/mealie/projects/7) or reach out on discord.
Mealie is a self hosted recipe manager and meal planner with a RestAPI backend and a reactive frontend application built in Vue for a pleasant user experience for the whole family. Easily add recipes into your database by providing the url and Mealie will automatically import the relevant data or add a family recipe with the UI editor. Mealie also provides an API for interactions from 3rd party applications. Mealie is a self hosted recipe manager and meal planner with a RestAPI backend and a reactive frontend application built in Vue for a pleasant user experience for the whole family. Easily add recipes into your database by providing the url and Mealie will automatically import the relevant data or add a family recipe with the UI editor. Mealie also provides an API for interactions from 3rd party applications.
[Remember to join the Discord](https://discord.gg/QuStdQGSGK) [Remember to join the Discord](https://discord.gg/QuStdQGSGK)

File diff suppressed because one or more lines are too long