Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions docs/install/docker-compose.md
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ The minimum system requirements for self-hosted Wave in Docker Compose are:
- Current, supported versions of **Docker Engine** and **Docker Compose**.
- Compute instance minimum requirements:
- **Memory**: 12 GB RAM available on the host system (8 GB for Wave replicas + headroom for OS and Docker).
- **CPU**: 4 CPU cores available on the host system (2 for Wave replicas + headroom for OS and Docker).
- **CPU**: 4 CPU cores available on the host system (2 CPU cores for Wave replicas + headroom for OS and Docker).
- **Storage**: 10 GB in addition to sufficient disk space for your container images and temporary files.
- For example, in AWS EC2, `m5a.xlarge` or greater
- **Network**: Connectivity to your PostgreSQL and Redis instances.
Expand Down Expand Up @@ -136,8 +136,8 @@ Add the following to your `docker-compose.yml`:
```yaml
services:
wave:
# Replace with your Wave image registry path
image: <WAVE CONTAINER IMAGE>
# Replace <wave-container-image> with your Wave image registry path
image: <wave-container-image>
ports:
- "9090:9090"
environment:
Expand Down
4 changes: 2 additions & 2 deletions lite/docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,8 +24,8 @@ services:
restart: unless-stopped

wave:
# Replace with your Wave image registry path
image: #<WAVE Container Image>
# Replace <wave-container-image> with your Wave image registry path
image: <wave-container-image>
ports:
- "9090:9090"
volumes:
Expand Down
Loading