mirror of
https://github.com/remnawave/panel.git
synced 2026-04-12 17:24:16 +00:00
1.6 KiB
1.6 KiB
sidebar_position, slug, title
| sidebar_position | slug | title |
|---|---|---|
| 1 | /installation/node/quick-start | Quick start |
Installation
Remnanode consists of one part:
- Node (with XRay Core inside)
Minimum requirements for Node:
- 1GB of RAM
- 1 CPU core
- Docker Engine
Configuration
First of all, you need to configure the environment variables.
You can find the list of all environment variables in the Environment Variables page.
Installation
:::info This guide is written for Debian 12, instructions may vary for other distributions. :::
- Create separate directory for the project.
mkdir -p ~/remnanode && cd ~/remnanode
- Create and configure the environment variables.
nano .env
- Add the following content to the .env file:
:::info SSL_CERT can be found in the main panel under the Nodes tab, after clicking the Create node button. APP_PORT can be customized, make sure it's not used by other services. :::
APP_PORT=2222
SSL_CERT=CERT_FROM_MAIN_PANEL
:::caution
Ensure that APP_PORT is only accessible from your panel IP!
:::
- Create
docker-compose.ymlfile, example below.
services:
remnanode:
container_name: remnanode
hostname: remnanode
image: remnawave/node:latest
restart: always
network_mode: host
env_file:
- .env
- Run containers.
docker compose up -d
- Check the logs.
docker compose logs -f
- Remnanode is now running.
Now we are ready to create a Node in the main panel.