diff --git a/.github/workflows/build-and-push-release-image.yml b/.github/workflows/build-and-push-release-image.yml index df5fa96..983bf73 100644 --- a/.github/workflows/build-and-push-release-image.yml +++ b/.github/workflows/build-and-push-release-image.yml @@ -24,7 +24,7 @@ jobs: - name: Login to Docker Hub uses: docker/login-action@v2 with: - username: stevenlgtm + username: yourselfhosted password: ${{ secrets.DOCKER_TOKEN }} - name: Set up Docker Buildx @@ -41,4 +41,4 @@ jobs: file: ./Dockerfile platforms: linux/amd64,linux/arm64 push: true - tags: stevenlgtm/slash:latest, stevenlgtm/slash:${{ env.VERSION }} + tags: yourselfhosted/slash:latest, yourselfhosted/slash:${{ env.VERSION }} diff --git a/.github/workflows/build-and-push-test-image.yml b/.github/workflows/build-and-push-test-image.yml index 25f312d..3a2306f 100644 --- a/.github/workflows/build-and-push-test-image.yml +++ b/.github/workflows/build-and-push-test-image.yml @@ -16,7 +16,7 @@ jobs: - name: Login to Docker Hub uses: docker/login-action@v2 with: - username: stevenlgtm + username: yourselfhosted password: ${{ secrets.DOCKER_TOKEN }} - name: Set up Docker Buildx @@ -34,4 +34,4 @@ jobs: file: ./Dockerfile platforms: linux/amd64 push: true - tags: stevenlgtm/slash:test + tags: yourselfhosted/slash:test diff --git a/README.md b/README.md index 7580e03..cc561eb 100644 --- a/README.md +++ b/README.md @@ -8,7 +8,7 @@ Try it out on Live Demo.

Discord - Docker pull + Docker pull GitHub stars

@@ -22,7 +22,7 @@ Try it out on Live Demo. ## Deploy with Docker in seconds ```bash -docker run -d --name slash -p 5231:5231 -v ~/.slash/:/var/opt/slash stevenlgtm/slash:latest +docker run -d --name slash -p 5231:5231 -v ~/.slash/:/var/opt/slash yourselfhosted/slash:latest ``` Learn more in [Self-hosting Slash with Docker](https://github.com/boojack/slash/blob/main/docs/install.md). diff --git a/docs/install.md b/docs/install.md index 47a9a49..8bb37f6 100644 --- a/docs/install.md +++ b/docs/install.md @@ -11,7 +11,7 @@ The only requirement is a server with Docker installed. To deploy Slash using docker run, just one command is needed: ```bash -docker run -d --name slash --publish 5231:5231 --volume ~/.slash/:/var/opt/slash stevenlgtm/slash:latest +docker run -d --name slash --publish 5231:5231 --volume ~/.slash/:/var/opt/slash yourselfhosted/slash:latest ``` This will start Slash in the background and expose it on port `5231`. Data is stored in `~/.slash/`. You can customize the port and data directory. @@ -33,7 +33,7 @@ cp -r ~/.slash/slash_prod.db ~/.slash/slash_prod.db.bak Then pull the latest image: ```bash -docker pull stevenlgtm/slash:latest +docker pull yourselfhosted/slash:latest ``` Finally, restart Slash by following the steps in [Docker Run](#docker-run).