You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
@@ -159,14 +166,14 @@ The image is built on both ARM64 and AMD64 architectures, so that it can run on
159
166
2. Open Terminal and run:
160
167
```bash
161
168
docker pull bytebard101/cosmoclassifier:latest
162
-
docker run --rm -p 5000:5000 bytebard101/cosmoclassifier:latest
169
+
docker run --rm -p 8000:8000 bytebard101/cosmoclassifier:latest
163
170
```
164
171
3. If your machine faces a port conflict, you will need to assign another port. Try to run this:
165
172
```bash
166
-
docker run --rm -p 5001:5000 bytebard101/cosmoclassifier:latest
173
+
docker run --rm -p 8001:8000 bytebard101/cosmoclassifier:latest
167
174
```
168
175
> If you followed Step 2 and the command ran successfully, then **DO NOT** follow this step.
169
-
4. The app will be live at localhost:5000. Open your browser and navigate to [http://127.0.0.1:5000](http://127.0.0.1:5000/) (or [http://127.0.0.1:5001](http://127.0.0.1:5000/) if you followed Step 3).
176
+
4. The app will be live at localhost:8000. Open your browser and navigate to [http://127.0.0.1:8000](http://127.0.0.1:8000/) (or [http://127.0.0.1:8001](http://127.0.0.1:8000/) if you followed Step 3).
170
177
171
178
Check [Docker Documentation](https://docs.docker.com/) to learn more about Docker and it's commands.
0 commit comments