This repository was archived by the owner on Mar 14, 2024. It is now read-only.
File tree Expand file tree Collapse file tree 1 file changed +35
-0
lines changed Expand file tree Collapse file tree 1 file changed +35
-0
lines changed Original file line number Diff line number Diff line change 81
81
http://localhost:1338
82
82
```
83
83
84
+ ## Docker 🐳
85
+ ### Prerequisites
86
+ Before you start, make sure you have installed [ Docker] ( https://www.docker.com/get-started ) on your machine.
87
+
88
+ ### Running the Docker
89
+ Dockerfile for creating a Docker image yourself
90
+ Then we can create an image using the following commands:
91
+ ```
92
+ git clone https://github.com/VadimBoev/freegpt-webui-v2.git cd freegpt-webui-v2
93
+ ```
94
+
95
+ Build image:
96
+ ```
97
+ docker build -f Dockerfile -t freegpt-webui-v2 .
98
+ ```
99
+
100
+ Run the application using Docker:
101
+ ```
102
+ docker run -p 1338:1338 freegpt-webui-v2:latest
103
+ ```
104
+
105
+ Access the application in your browser using the URL:
106
+ ```
107
+ http://127.0.0.1:1338
108
+ ```
109
+ or
110
+ ```
111
+ http://localhost:1338
112
+ ```
113
+
114
+ When you're done using the application, stop the Docker containers using the following command:
115
+ ```
116
+ docker stop <container-id>
117
+ ```
118
+
84
119
## Incorporated Projects :busts_in_silhouette :
85
120
I highly recommend visiting and supporting both projects.
86
121
You can’t perform that action at this time.
0 commit comments