Skip to content

Commit bb7efe1

Browse files
committed
Update README.md
1 parent 1d93cd4 commit bb7efe1

1 file changed

Lines changed: 21 additions & 21 deletions

File tree

README.md

Lines changed: 21 additions & 21 deletions
Original file line numberDiff line numberDiff line change
@@ -26,11 +26,11 @@
2626
</p>
2727

2828
<p align="center">
29-
<a href="https://github.com/JulianPrieber/llc-docker/stargazers"><img src="https://img.shields.io/github/stars/julianprieber/llc-docker?logo=github&style=flat&logo=appveyor&label=star%20this%20project"></img></a>
30-
<a href="https://hub.docker.com/r/julianprieber/linkstack"><img src="https://img.shields.io/docker/stars/julianprieber/linkstack?&style=flat&logo=appveyor&label=docker%20hub"></img></a>
29+
<a href="https://github.com/linkstackorg/linkstack-docker/stargazers"><img src="https://img.shields.io/github/stars/linkstackorg/linkstack-docker?logo=github&style=flat&logo=appveyor&label=star%20this%20project"></img></a>
30+
<a href="https://hub.docker.com/r/linkstackorg/linkstack"><img src="https://img.shields.io/docker/stars/linkstackorg/linkstack?&style=flat&logo=appveyor&label=docker%20hub"></img></a>
3131
<a href="https://discord.linkstack.com"><img src="https://img.shields.io/discord/955765706111193118?color=4A55CC&label=Discord&logo=discord&style=flat&logo=appveyor"></img></a>
32-
<a href="https://github.com/sponsors/julianprieber"><img src="https://img.shields.io/github/sponsors/JulianPrieber?color=BF4B8A&logo=githubsponsors&style=flat&logo=appveyor=Sponsor%20on%20Github"></img></a>
33-
<a href="https://patreon.com/julianprieber"><img src="https://img.shields.io/endpoint.svg?url=https%3A%2F%2Fshieldsio-patreon.vercel.app%2Fapi%3Fusername%3Djulianprieber%26type%3Dpatrons&style=flat&logo=appveyor"></img></a>
32+
<a href="https://github.com/sponsors/linkstackorg"><img src="https://img.shields.io/github/sponsors/linkstackorg?color=BF4B8A&logo=githubsponsors&style=flat&logo=appveyor=Sponsor%20on%20Github"></img></a>
33+
<a href="https://patreon.com/linkstackorg"><img src="https://img.shields.io/endpoint.svg?url=https%3A%2F%2Fshieldsio-patreon.vercel.app%2Fapi%3Fusername%3Dlinkstackorg%26type%3Dpatrons&style=flat&logo=appveyor"></img></a>
3434
</p>
3535

3636
<p align="center">
@@ -40,9 +40,9 @@
4040
<a name="1"></a>
4141
## About
4242

43-
The official docker version of [LinkStack](https://github.com/JulianPrieber/linkstack). This docker image is a simple to set up solution, containing everything you need to run LinkStack.
43+
The official docker version of [LinkStack](https://github.com/linkstackorg/linkstack). This docker image is a simple to set up solution, containing everything you need to run LinkStack.
4444

45-
The docker version of LinkStack retains all the features and customization options of the [original version](https://github.com/JulianPrieber/linkstack).
45+
The docker version of LinkStack retains all the features and customization options of the [original version](https://github.com/linkstackorg/linkstack).
4646

4747
This docker is based on [Alpine Linux](https://www.alpinelinux.org/), a Linux distribution designed to be small, simple and secure. The web server is running [Apache2](https://www.apache.org/), a free and open-source cross-platform web server software. The docker comes with [PHP 8.0](https://www.php.net/releases/8.0/en.php) for high compatibility and performance.
4848

@@ -85,17 +85,17 @@ This docker is based on [Alpine Linux](https://www.alpinelinux.org/), a Linux di
8585
<a name="3"></a>
8686
## Pull
8787

88-
`docker pull julianprieber/linkstack`
88+
`docker pull linkstackorg/linkstack`
8989

9090
<br>
9191

9292
<a name="4"></a>
9393
## Supported Architectures
9494

95-
- [`linux/amd64`](https://hub.docker.com/r/julianprieber/linkstack/tags)
96-
- [`linux/arm/v6`](https://hub.docker.com/r/julianprieber/linkstack/tags)
97-
- [`linux/arm/v7`](https://hub.docker.com/r/julianprieber/linkstack/tags)
98-
- [`linux/arm64`](https://hub.docker.com/r/julianprieber/linkstack/tags)
95+
- [`linux/amd64`](https://hub.docker.com/r/linkstackorg/linkstack/tags)
96+
- [`linux/arm/v6`](https://hub.docker.com/r/linkstackorg/linkstack/tags)
97+
- [`linux/arm/v7`](https://hub.docker.com/r/linkstackorg/linkstack/tags)
98+
- [`linux/arm64`](https://hub.docker.com/r/linkstackorg/linkstack/tags)
9999

100100
<br>
101101

@@ -126,7 +126,7 @@ Both HTTP and HTTPS are supported and exposed by default.
126126
<br>
127127

128128
**Create a new volume:**
129-
<pre>docker volume create llc</pre>
129+
<pre>docker volume create linkstack</pre>
130130

131131
<br>
132132

@@ -136,8 +136,8 @@ docker run --detach \
136136
--publish 80:80 \
137137
--publish 443:443 \
138138
--restart unless-stopped \
139-
--mount source=llc,target=/htdocs \
140-
julianprieber/linkstack
139+
--mount source=linkstack,target=/htdocs \
140+
linkstackorg/linkstack
141141
</pre>
142142

143143
<br>
@@ -157,8 +157,8 @@ docker run --detach \
157157
--publish 80:80 \
158158
--publish 443:443 \
159159
--restart unless-stopped \
160-
--mount source=llc,target=/htdocs \
161-
julianprieber/linkstack
160+
--mount source=linkstack,target=/htdocs \
161+
linkstackorg/linkstack
162162
</pre>
163163

164164
<br>
@@ -173,7 +173,7 @@ services:
173173
174174
linkstack:
175175
hostname: 'linkstack'
176-
image: 'julianprieber/linkstack:latest'
176+
image: 'linkstackorg/linkstack:latest'
177177
environment:
178178
TZ: 'Europe/Berlin'
179179
SERVER_ADMIN: 'youremail@gmail.com'
@@ -239,8 +239,8 @@ This updater allows you to update your installation with just one click.
239239

240240
**If you wish to build or modify your own docker version of LinkStack, you can do so with the instructions below:**
241241

242-
- Download this GitHub repository as well as the latest release of LinkStack from [here](https://github.com/JulianPrieber/linkstack/releases/latest/download/linkstack.zip).
243-
- Place the downloaded release files directly into the linkstack folder from [this repository](https://github.com/JulianPrieber/llc-docker/archive/refs/heads/main.zip).
242+
- Download this GitHub repository as well as the latest release of LinkStack from [here](https://github.com/linkstackorg/linkstack/releases/latest/download/linkstack.zip).
243+
- Place the downloaded release files directly into the linkstack folder from [this repository](https://github.com/linkstackorg/linkstack-docker/archive/refs/heads/main.zip).
244244

245245
From the docker directory, run the command:
246246
<pre>
@@ -290,13 +290,13 @@ If you wish to save only selective files, you may save the following files and f
290290

291291
| ❌ Invalid setup ❌ |
292292
| ----------------------------------------------------- |
293-
|<a href="https://github.com/JulianPrieber/llc-docker#8"><img src="https://i.imgur.com/QSCDU6w.png"></a>|
293+
|<a href="https://github.com/linkstackorg/linkstack-docker#8"><img src="https://i.imgur.com/QSCDU6w.png"></a>|
294294

295295
<br>
296296

297297
| ⚠️ Incorrect ⚠️ | ✅ Correct ✅ |
298298
| ----------------------------------------------------- | ----------------------------------------------------- |
299-
|<a href="https://github.com/JulianPrieber/llc-docker#8"><img width="500" src="https://i.imgur.com/3ellGki.png"></a>|<a href="https://github.com/JulianPrieber/llc-docker#8"><img width="500" src="https://i.imgur.com/EfKRGSJ.png"></a>|
299+
|<a href="https://github.com/linkstackorg/linkstack-docker#8"><img width="500" src="https://i.imgur.com/3ellGki.png"></a>|<a href="https://github.com/linkstackorg/linkstack-docker#8"><img width="500" src="https://i.imgur.com/EfKRGSJ.png"></a>|
300300
| Invalid header configuration | Valid header configuration |
301301

302302
<br>

0 commit comments

Comments
 (0)