mirror of
https://github.com/mealie-recipes/mealie.git
synced 2025-08-02 20:15:24 +02:00
doc(single-container): add hint on the exposed ports (#2029)
This commit is contained in:
parent
617cc1fdfb
commit
91f0a92838
1 changed files with 4 additions and 2 deletions
|
@ -2,12 +2,11 @@
|
|||
|
||||
Since [#1948](https://github.com/hay-kot/mealie/pull/1948) we've started publishing an experimental image that merges both the frontend and backend services into a single container image. This image is currently in an experimental state, and should be used with caution. Continued support for this image will be based on user feedback and demand, if you're using this image please let us know how it's working for you.
|
||||
|
||||
|
||||
- [Feedback Discussion](https://github.com/hay-kot/mealie/discussions/1949)
|
||||
|
||||
**For Environmental Variable Configuration See:**
|
||||
|
||||
Note that frontend and backend configurations are both applied to the same container.
|
||||
Note that frontend and backend configurations are both applied to the same container. The container exposes the port 9000 for the API and port 3000 for the frontend.
|
||||
|
||||
- [Frontend Configuration](./frontend-config.md)
|
||||
- [Backend Configuration](./backend-config.md)
|
||||
|
@ -19,6 +18,9 @@ services:
|
|||
mealie-omni:
|
||||
image: hkotel/mealie:omni-nightly
|
||||
container_name: mealie
|
||||
ports:
|
||||
- "3000:3000"
|
||||
- "9000:9000"
|
||||
volumes:
|
||||
- mealie-data:/app/data/
|
||||
environment:
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue