From 9e81133535602fb7297fb281fccef2e49fb09a4d Mon Sep 17 00:00:00 2001 From: recursivetree <60423027+recursivetree@users.noreply.github.com> Date: Tue, 26 Dec 2023 12:17:16 +0100 Subject: [PATCH] point seat 4 installation instructions to the seat 4 branch (#160) --- .../old_versions/docker_installation_seat_4.md | 10 +++++----- docs/upgrading/from_seat_3_0/docker.md | 10 +++++----- 2 files changed, 10 insertions(+), 10 deletions(-) diff --git a/docs/installation/old_versions/docker_installation_seat_4.md b/docs/installation/old_versions/docker_installation_seat_4.md index 9818a99..c7f70b9 100644 --- a/docs/installation/old_versions/docker_installation_seat_4.md +++ b/docs/installation/old_versions/docker_installation_seat_4.md @@ -45,7 +45,7 @@ Depending on whether you already have `docker` and `docker-compose` already inst ### Automated Setup Script -If you do not have the required software installed yet, consider running the [bootstrap script](https://github.com/eveseat/seat-docker/blob/master/bootstrap.sh) that will check for `docker` and `docker-compose`, install it and start the SeAT stack up for you. The script can be run with: +If you do not have the required software installed yet, consider running the [bootstrap script](https://github.com/eveseat/seat-docker/blob/4.x/bootstrap.sh) that will check for `docker` and `docker-compose`, install it and start the SeAT stack up for you. The script can be run with: ```bash bash <(curl -fsSL https://git.io/get-seat) @@ -91,24 +91,24 @@ Then, download the `docker-compose.yml` file with: === "Linux" ```bash - curl -fsSL https://raw.githubusercontent.com/eveseat/seat-docker/master/docker-compose.yml -o docker-compose.yml + curl -fsSL https://raw.githubusercontent.com/eveseat/seat-docker/4.x/docker-compose.yml -o docker-compose.yml ``` === "Windows" ```powershell - Invoke-WebRequest -Uri https://raw.githubusercontent.com/eveseat/seat-docker/master/docker-compose.yml -OutFile docker-compose.yml + Invoke-WebRequest -Uri https://raw.githubusercontent.com/eveseat/seat-docker/4.x/docker-compose.yml -OutFile docker-compose.yml ``` Next, download the docker `.env` file with: === "Linux" ```bash - curl -fsSL https://raw.githubusercontent.com/eveseat/seat-docker/master/.env -o .env + curl -fsSL https://raw.githubusercontent.com/eveseat/seat-docker/4.x/.env -o .env ``` === "Windows" ```powershell - Invoke-WebRequest -Uri https://raw.githubusercontent.com/eveseat/seat-docker/master/.env -OutFile .env + Invoke-WebRequest -Uri https://raw.githubusercontent.com/eveseat/seat-docker/4.x/.env -OutFile .env ``` Next, we will generate a unique application key - this is used internally for encryption: diff --git a/docs/upgrading/from_seat_3_0/docker.md b/docs/upgrading/from_seat_3_0/docker.md index 78d896a..3e7b0ca 100644 --- a/docs/upgrading/from_seat_3_0/docker.md +++ b/docs/upgrading/from_seat_3_0/docker.md @@ -37,8 +37,8 @@ We highly reccomend that you read the details of this upgrade guide to get famil - Make a [backup] of your database. - `cd` to your install dir (which is probably `/opt/seat-docker`) and bring the stack down with `docker-compose down` - Make a copy of your `.env` and `docker-compose.yml` files. -- Download the new `docker-compose.yml` file with `curl -L https://raw.githubusercontent.com/eveseat/seat-docker/master/docker-compose.yml -o docker-compose.yml`. -- Down the new `.env` file with `curl -L https://raw.githubusercontent.com/eveseat/seat-docker/master/.env -o .env`. +- Download the new `docker-compose.yml` file with `curl -L https://raw.githubusercontent.com/eveseat/seat-docker/4.x/docker-compose.yml -o docker-compose.yml`. +- Down the new `.env` file with `curl -L https://raw.githubusercontent.com/eveseat/seat-docker/4.x/.env -o .env`. - Upgrade your `docker-compose` installation. It should be version `1.26` and up. - Configure the new `.env` file. Important configs include the `TRAEFIK_` variables, the `SEAT_SUBDOMAIN` variable. Copy over existing values from your old `.env` file for the `EVE_CLIENT_` variables, the `APP_KEY` varaible and finally the `DB_` variables. - Bring the stack back up with `docker-compose up -d` and watch the migration process. @@ -111,13 +111,13 @@ Removing network seat-docker_seat-network #### Get the new docker-compose file !!! warning - If you have made customisations to how you deployed SeAT with docker-compose, then you should probably **not** be replacing the compose file like we are about to do. Instead, have a look at the new one [here](https://github.com/eveseat/seat-docker/blob/master/docker-compose.yml) and adapt. + If you have made customisations to how you deployed SeAT with docker-compose, then you should probably **not** be replacing the compose file like we are about to do. Instead, have a look at the new one [here](https://github.com/eveseat/seat-docker/blob/4.x/docker-compose.yml) and adapt. Next, we will download the new SeAT 4 docker-compose file. Do that with: ```bash linenums="1" mv docker-compose.yml docker-compose.yml.back -curl -L https://raw.githubusercontent.com/eveseat/seat-docker/master/docker-compose.yml -o docker-compose.yml +curl -L https://raw.githubusercontent.com/eveseat/seat-docker/4.x/docker-compose.yml -o docker-compose.yml ``` With this we have created a copy of the older docker-compose file (just in case), and downloaded the new one. @@ -130,7 +130,7 @@ Get it with: ```bash linenums="1" mv .env .env.back -curl -L https://raw.githubusercontent.com/eveseat/seat-docker/master/.env -o .env +curl -L https://raw.githubusercontent.com/eveseat/seat-docker/4.x/.env -o .env ``` #### Configure the new .env file