Skip to content
This repository has been archived by the owner on Mar 14, 2024. It is now read-only.

Commit

Permalink
add Docker
Browse files Browse the repository at this point in the history
  • Loading branch information
VadimBoev authored Feb 23, 2024
1 parent 607ff5e commit c321c87
Showing 1 changed file with 35 additions and 0 deletions.
35 changes: 35 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -81,6 +81,41 @@ or
http://localhost:1338
```

## Docker 🐳
### Prerequisites
Before you start, make sure you have installed [Docker](https://www.docker.com/get-started) on your machine.

### Running the Docker
Dockerfile for creating a Docker image yourself
Then we can create an image using the following commands:
```
git clone https://github.com/VadimBoev/freegpt-webui-v2.git cd freegpt-webui-v2
```

Build image:
```
docker build -f Dockerfile -t freegpt-webui-v2 .
```

Run the application using Docker:
```
docker run -p 1338:1338 freegpt-webui-v2:latest
```

Access the application in your browser using the URL:
```
http://127.0.0.1:1338
```
or
```
http://localhost:1338
```

When you're done using the application, stop the Docker containers using the following command:
```
docker stop <container-id>
```

## Incorporated Projects :busts_in_silhouette:
I highly recommend visiting and supporting both projects.

Expand Down

0 comments on commit c321c87

Please sign in to comment.