Skip to content

Commit e87ded9

Browse files
committed
review fixes
1 parent 668c28a commit e87ded9

File tree

1 file changed

+24
-12
lines changed

1 file changed

+24
-12
lines changed

self-hosting/methods/docker-aio.mdx

Lines changed: 24 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -9,17 +9,26 @@ The Plane Commercial All-in-One (AIO) Docker image packages all Plane services i
99

1010
Your single AIO container includes all these services running together:
1111

12-
- **Web App** (Port 3001) - The main Plane web interface you'll use
13-
- **Space** (Port 3002) - Public project spaces for external collaboration
14-
- **Admin** (Port 3003) - Administrative interface
15-
- **API Server** (Port 3004) - Backend API
16-
- **Live Server** (Port 3005) - Real-time collaboration features
17-
- **Silo** (Port 3006) - Integration services
18-
- **Monitor** (Port 3007) - Feature flags and payments
19-
- **Email Server** (Ports 10025, 10465, 10587) - SMTP server for notifications
12+
- **Web App** - The main Plane web interface you'll use
13+
- **Space** - Public project spaces for external collaboration
14+
- **Admin** - Administrative interface
15+
- **API Server** - Backend API
16+
- **Live Server** - Real-time collaboration features
17+
- **Silo** - Integration services
18+
- **Monitor** - Feature flags and payments
19+
- **Email Server** - SMTP server for notifications
2020
- **Proxy** (Port 80, 20025, 20465, 20587) - Caddy reverse proxy
2121
- **Worker and Beat Worker** - Background task processing
2222

23+
### Port Mapping
24+
25+
The following ports are exposed:
26+
- `80`: Main web interface (HTTP)
27+
- `443`: HTTPS (if SSL configured)
28+
- `20025`: SMTP port 25
29+
- `20465`: SMTP port 465 (SSL/TLS)
30+
- `20587`: SMTP port 587 (STARTTLS)
31+
2332
## Prerequisites
2433

2534
- [Docker](https://docs.docker.com/engine/)
@@ -35,7 +44,10 @@ Your single AIO container includes all these services running together:
3544

3645
## Install Plane
3746

38-
1. [Download the image]
47+
1. Download the image with:
48+
```bash
49+
docker pull artifacts.plane.so/makeplane/plane-aio-commercial:stable
50+
```
3951

4052
2. Run the following command to deploy the Plane AIO container. Make sure to replace all placeholder values (e.g., `your-domain.com`, `user:pass`) with your actual configuration.
4153

@@ -60,7 +72,7 @@ Your single AIO container includes all these services running together:
6072
plane-aio-commercial:latest
6173
```
6274

63-
If you're running everything locally, use this example:
75+
If you're running on an IP address, use this example:
6476

6577
```bash
6678
MYIP=192.168.68.169
@@ -74,8 +86,8 @@ Your single AIO container includes all these services running together:
7486
-e REDIS_URL=redis://${MYIP}:16379 \
7587
-e AMQP_URL=amqp://plane:plane@${MYIP}:15673/plane \
7688
-e AWS_REGION=us-east-1 \
77-
-e AWS_ACCESS_KEY_ID=5MV45J9NF5TEFZWYCRAX \
78-
-e AWS_SECRET_ACCESS_KEY=7xMqAiAHsf2UUjMH+EwICXlyJL9TO30m8leEaDsL \
89+
-e AWS_ACCESS_KEY_ID=<YOUR_AWS_ACCESS_KEY_ID> \
90+
-e AWS_SECRET_ACCESS_KEY=<YOUR_AWS_SECRET_ACCESS_KEY> \
7991
-e AWS_S3_BUCKET_NAME=plane-app \
8092
-e AWS_S3_ENDPOINT_URL=http://${MYIP}:19000 \
8193
-e FILE_SIZE_LIMIT=10485760 \

0 commit comments

Comments
 (0)