diff --git a/docs/publish/web/dynamic-website/hosting/docker.md b/docs/publish/web/dynamic-website/hosting/docker.md
new file mode 100644
index 00000000..798ffc8b
--- /dev/null
+++ b/docs/publish/web/dynamic-website/hosting/docker.md
@@ -0,0 +1,126 @@
+---
+title: Docker
+sidebar_label: Docker
+---
+
+You can watch the tutorial video on Docker by following the link below:
+
+
+
+## Dockerizing Your Flet App
+
+Dockerizing your Flet app is an effective way to deploy it. To get started with Dockerizing Flet, you need to have [Docker](https://www.docker.com/) installed on your system.
+
+:::note
+When linking to the "assets" directory, use `/` instead of `/assets`.
+:::
+
+### Sample Flet Docker Example
+
+This is the minimal docker structure that you need:
+
+```
+├── Dockerfile
+├── main.py
+├── requirements.txt
+```
+
+Optionally it's recommended that you add a ```.dockerignore``` file as well. This file is responsible for ignoring any unwanted files or directories when you're building your docker image. It's similar to ```.gitignore```.
+
+Here’s a simple example of a Flet app configured to run in Docker:
+
+First you need a main file to run your entire code as server.
+
+```python title="main.py"
+import flet as ft
+
+def main(page: ft.Page):
+ page.title = "Flet Docker example"
+ page.vertical_alignment = ft.MainAxisAlignment.CENTER
+ page.horizontal_alignment = ft.CrossAxisAlignment.CENTER
+
+ text = ft.TextField(value="Flet dockerized", text_align=ft.TextAlign.CENTER, text_size=60)
+
+ page.add(
+ text
+ )
+
+ft.app(
+ target=main,
+ view=None,
+ port=8000,
+ host="0.0.0.0"
+)
+```
+
+Second you need a Dockerfile file to build your entire docker image from your main python file.
+
+```Docker title="Dockerfile"
+FROM python:3-alpine
+
+WORKDIR /app
+
+COPY requirements.txt ./
+RUN pip install --no-cache-dir -r requirements.txt
+
+COPY . .
+
+EXPOSE 8000
+
+CMD ["python", "main.py"]
+```
+
+Third you need a requirements.txt to include all the libraries that you're using in your python file.
+
+
+```requirements title="requirements.txt"
+flet
+```
+
+### Building and Running Your Docker Container
+
+**Log in to Docker CLI:**
+
+After installing Docker, create a Docker account and log in using Docker CLI:
+
+```bash
+docker login -u
+```
+
+Enter your password when prompted
+
+```bash
+
+```
+
+**Build your docker image from your flet project:**
+
+Create an image from your flet project.
+
+```bash
+docker build -t .
+```
+
+**Run and Test Your Docker Container:**
+
+Create a container from your image and test it.
+
+```bash
+docker run -p 80:8000
+```
+
+You should see your website running at [http://127.0.0.1](http://127.0.0.1).
+
+### Pushing Your Docker Image to Docker Hub:
+
+If you want to deploy your image to a cloud service, you may need to push it to Docker Hub. First, tag your image:
+
+```bash
+docker tag :/:
+```
+
+Then, push it to Docker Hub:
+
+```bash
+docker push /:
+```
diff --git a/sidebars.js b/sidebars.js
index 71643e54..0ddb7bab 100644
--- a/sidebars.js
+++ b/sidebars.js
@@ -81,6 +81,7 @@ module.exports = {
"publish/web/dynamic-website/hosting/fly-io",
"publish/web/dynamic-website/hosting/replit",
"publish/web/dynamic-website/hosting/self-hosting",
+ "publish/web/dynamic-website/hosting/docker",
],
}
],