Skip to content

Commit cebad48

Browse files
Fixed deployment guides #85
2 parents a88140c + 909a455 commit cebad48

File tree

2 files changed

+7
-7
lines changed

2 files changed

+7
-7
lines changed

self-hosting/methods/docker-swarm.mdx

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -14,16 +14,16 @@ This guide shows you the steps to deploy a self-hosted instance of the Plane Com
1414
### Procedure
1515

1616
1. **Download the required depoyment files**
17-
- `docker-compose.yml` – Defines Plane's services and dependencies.
17+
- `swarm-compose.yml` – Defines Plane's services and dependencies.
1818
```bash
19-
curl -fsSL https://prime.plane.so/releases/<plane-version>/docker-compose.yml -o docker-compose.yml
19+
curl -fsSL https://prime.plane.so/releases/<plane-version>/swarm-compose.yml -o swarm-compose.yml
2020
```
2121
- `variables.env` – Stores environment variables for your deployment.
2222
```bash
2323
curl -fsSL https://prime.plane.so/releases/<plane-version>/variables.env -o plane.env
2424
```
2525
<Warning>
26-
The `<plane-version>` value should be v1.8.2 or higher.
26+
The `<plane-version>` value should be v1.8.3 or higher.
2727
</Warning>
2828

2929
2. **Configure environment variables**
@@ -53,7 +53,7 @@ This guide shows you the steps to deploy a self-hosted instance of the Plane Com
5353

5454
4. **Deploy the stack**
5555
```bash
56-
docker stack deploy -c <path-to docker-compose.yml> plane
56+
docker stack deploy -c <path-to swarm-compose.yml> plane
5757
```
5858

5959
That's it! This will deploy Plane as a Swarm stack, and your instance should be accessible on your configured domain.

self-hosting/methods/portainer.mdx

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -14,9 +14,9 @@ This guide shows you the steps to deploy a self-hosted instance of Plane using P
1414
### Procedure
1515

1616
1. **Download the required depoyment files**
17-
- `docker-compose.yml` – Defines Plane's services and dependencies.
17+
- `portainer-compose.yml` – Defines Plane's services and dependencies.
1818
```bash
19-
curl -fsSL https://prime.plane.so/releases/<plane-version>/docker-compose.yml -o docker-compose.yml
19+
curl -fsSL https://prime.plane.so/releases/<plane-version>/portainer-compose.yml -o portainer-compose.yml
2020
```
2121
- `variables.env` – Stores environment variables for your deployment.
2222
```bash
@@ -28,7 +28,7 @@ This guide shows you the steps to deploy a self-hosted instance of Plane using P
2828

2929
2. Click **+ Add stack** on Portainer.
3030

31-
3. Copy and paste the contents of `docker-compose.yml` into the editor.
31+
3. Copy and paste the contents of `portainer-compose.yml` into the editor.
3232

3333
4. Load environment variables from the `variables.env` file.
3434

0 commit comments

Comments
 (0)