From 91f0a928380561ed504550417e9eb6af2504ef5a Mon Sep 17 00:00:00 2001 From: Benjamin Schmid Date: Sun, 29 Jan 2023 01:46:27 +0100 Subject: [PATCH] doc(single-container): add hint on the exposed ports (#2029) --- .../getting-started/installation/single-container.md | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/docs/docs/documentation/getting-started/installation/single-container.md b/docs/docs/documentation/getting-started/installation/single-container.md index 2b0ede205..24e7d61f9 100644 --- a/docs/docs/documentation/getting-started/installation/single-container.md +++ b/docs/docs/documentation/getting-started/installation/single-container.md @@ -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: