Skip to content

Commit 2e4bb24

Browse files
committed
Fix: Corrected port number in docs (#12)
1 parent 4de1e00 commit 2e4bb24

6 files changed

Lines changed: 8 additions & 8 deletions

File tree

.github/README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
### Deploying
1616

1717
#### Option 1 - Docker
18-
Run `docker run -p 8080:80 lissy93/networking-toolbox`<br>
18+
Run `docker run -p 8080:3000 lissy93/networking-toolbox`<br>
1919
Or, use our example [`docker-compose.yml`](https://github.com/Lissy93/networking-toolbox/blob/main/docker-compose.yml)
2020

2121
#### Option 2 - Cloud
@@ -43,7 +43,7 @@ And upload the contents of `./build` to any web server, CDN or static host.
4343
#### Option 6 - Source: Docker
4444
Follow the dev steps below.
4545
Then run `docker build -t networking-toolbox .` to build the image.<br>
46-
You can then start the container with `docker run -p 8080:80 networking-toolbox`.
46+
You can then start the container with `docker run -p 8080:3000 networking-toolbox`.
4747

4848
#### Option 7 - Source: Other Platforms
4949
You can build the app from source for a variety of platforms. This is done via SvelteKit adapters.<br>

.github/docs/build-deployment.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -204,7 +204,7 @@ docker build -t networking-toolbox .
204204
docker run -p 3000:3000 networking-toolbox
205205

206206
# Or with environment variables
207-
docker run -p 8080:8080 -e PORT=8080 networking-toolbox
207+
docker run -p 8080:300080 -e PORT=8080 networking-toolbox
208208
```
209209
210210
#### Docker Compose
@@ -489,4 +489,4 @@ DATABASE_URL=<connection-string>
489489
# .env.local (gitignored)
490490
```
491491
492-
This comprehensive build system ensures the networking toolbox can be deployed reliably across any platform while maintaining optimal performance and security.
492+
This comprehensive build system ensures the networking toolbox can be deployed reliably across any platform while maintaining optimal performance and security.

.github/workflows/release.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -84,7 +84,7 @@ jobs:
8484
**Docker:**
8585
```bash
8686
docker pull lissy93/networking-toolbox:${{ steps.version.outputs.version }}
87-
docker run -d -p 8080:80 lissy93/networking-toolbox:${{ steps.version.outputs.version }}
87+
docker run -d -p 8080:3000 lissy93/networking-toolbox:${{ steps.version.outputs.version }}
8888
```
8989
9090
**From Source:**

src/lib/components/page-specific/about/BuildingSection.svelte

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@
4141
<li>
4242
<strong>Option #3 - Docker:</strong><br />
4343
Build the Docker image, with <code>docker build -t networking-toolbox .</code>
44-
then run <code>docker run -p 8080:8080 networking-toolbox</code>
44+
then run <code>docker run -p 8080:300080 networking-toolbox</code>
4545
</li>
4646
</ul> -->
4747

src/lib/components/page-specific/about/DeployingSection.svelte

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
<h3>Option #1 - Docker</h3>
1414
<p>With Docker installed, just run the following command:</p>
1515
<div class="code">
16-
<code>docker run -p 8080:8080 lissy93/networking-toolbox</code>
16+
<code>docker run -p 8080:300080 lissy93/networking-toolbox</code>
1717
</div>
1818
<p>
1919
You can also checkout our

src/lib/components/page-specific/about/SelfHostingSection.svelte

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
{site.title} can be easily deployed to your own server. Just run the following command:
99
</p>
1010
<div class="code">
11-
<code>docker run -p 8080:8080 lissy93/networking-toolbox</code>
11+
<code>docker run -p 8080:300080 lissy93/networking-toolbox</code>
1212
</div>
1313
<p>
1414
You can also checkout our <a href="https://github.com/Lissy93/networking-toolbox/blob/main/docker-compose.yml"

0 commit comments

Comments
 (0)