Skip to content

Commit

Permalink
Merge pull request #1974 from poissoncorp/RDoc-3156
Browse files Browse the repository at this point in the history
RDoc-3156 Post-release fixes
  • Loading branch information
ppekrol authored Jan 29, 2025
2 parents c9faa1f + c0fa5c3 commit 5da5abb
Show file tree
Hide file tree
Showing 5 changed files with 6 additions and 10 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,7 @@ You can:

If your use case requires more extensive customization, you can modify the Dockerfile directly to create a tailored image.

##### Possibilities of modifications
#### Possibilities of modifications

###### Change the Base Image
Replace `FROM mcr.microsoft.com/dotnet/runtime-deps:8.0-jammy` with another OS, such as `debian:buster` or `alpine:latest`.
Expand All @@ -84,7 +84,7 @@ CMD ["/bin/bash", "/usr/lib/ravendb/scripts/run-raven.sh"]
{CODE-BLOCK/}


## Entry Script ([run-raven.sh)](https://github.com/ravendb/ravendb/blob/v6.2/docker/ravendb-ubuntu/run-raven.sh)
## Entry Script ([run-raven.sh](https://github.com/ravendb/ravendb/blob/v6.2/docker/ravendb-ubuntu/run-raven.sh))

This script initializes and runs the RavenDB server.
It's designed to work for anyone, so in some scenarios you may want to chisel it down a bit, modify, or completely replace, which we'll cover next.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ RavenDB offers official images based on Ubuntu and Windows NanoServer.

First, let's describe basic development usage of our images.
We'll **focus on basics**, not going *too deep* into security, networking and storage.
For detailed instructions on how to spin up your production, you can read our guides for specific container/orchestration platforms - **deployment articles**, or go *deep* with **https://ravendb.net/docs/start/containers** knowledge-base.
For detailed instructions on how to spin up your production, you can read our guides for specific container/orchestration platforms - search through our [articles](https://ravendb.net/articles), or go *deep* with our [RavenDB Containers Docs](.) that also addresses containerized RavenDB [production requirements](./requirements).

To quickly try out RavenDB, you can run the following command:

Expand Down Expand Up @@ -85,10 +85,10 @@ docker run -v /path/to/config:/etc/ravendb \
ravendb/ravendb:ubuntu-latest
{CODE-BLOCK/}

To learn about statefullness and storing RavenDB data in a containers, or if you run into trouble, visit Containers > Requirements > Storage documentation page.
To learn about statefullness and storing RavenDB data in a containers, or if you run into trouble, visit [Containers > Requirements > Storage](./requirements/storage).

#### **Advanced Networking**
To read more on RavenDB networking containerized environment, go to Containers > Requirements > Networking.
To read more on RavenDB networking containerized environment, go to [Containers > Requirements > Networking](./requirements/networking).

{PANEL: FAQ}

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -42,9 +42,8 @@ Run RavenDB in managed Kubernetes clusters to simplify container orchestration a
This option supports dynamic workloads with features like autoscaling and node group management.

You should be able to deploy a **node group** to match your computing needs. Many providers are offering such service - EKS, AKS, GKE, etc.
Kubernetes always increases the cost of a solution by far, but the power it offers is often unmatched.
Kubernetes always increases the cost of a solution **by far**, but the power it offers is often unmatched.

---

## **ARM Architecture Support**

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,6 @@ As a database that relies on both HTTP and TCP protocols for communication,
proper network configuration is essential to ensure healthy cluster node-to-node communication and client connectivity.
This article outlines the specific networking requirements and configurations for RavenDB in containerized environments.

---

## **Key Networking Concepts for RavenDB**

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,6 @@ If you are looking for a broader understanding of RavenDB's storage mechanisms,
- [Storage Engine](../../../server/storage/storage-engine)
- [Directory Structure](../../../server/storage/directory-structure)

---

## **Why Storage Matters for RavenDB Containers**

Expand All @@ -24,7 +23,6 @@ Without proper configuration:
- Performance may degrade due to suboptimal storage setups.
- Inconsistent behavior can arise during scaling, updates or failover operations.

---

## **Requirements**

Expand Down

0 comments on commit 5da5abb

Please sign in to comment.