m2
Some checks failed
CI / validate (push) Has been cancelled

This commit is contained in:
2026-03-23 00:06:01 -05:00
parent 23ac496963
commit 1a9209431b
14 changed files with 258 additions and 83 deletions

View File

@@ -25,7 +25,7 @@ cd stellar
Build the image from the repo root:
```bash
docker build -f docker/Dockerfile -t stellar:local .
docker build -t stellar:local .
```
Start the container:
@@ -51,11 +51,11 @@ http://<your-unraid-ip>:8080
From the repo root:
```bash
docker compose -f docker/docker-compose.yml build
docker compose -f docker/docker-compose.yml up -d
docker compose build
docker compose up -d
```
This uses the repos single-service compose file and exposes the app on port `8080`.
This uses the repo's single-service compose file and exposes the app on port `8080`.
## Option 3: Pull A Prebuilt Image
@@ -99,7 +99,7 @@ If building from source:
```bash
cd /mnt/user/appdata/stellar
git pull
docker build -f docker/Dockerfile -t stellar:local .
docker build -t stellar:local .
docker rm -f stellar
docker run -d \
--name stellar \
@@ -115,7 +115,7 @@ If using compose:
```bash
cd /mnt/user/appdata/stellar
git pull
docker compose -f docker/docker-compose.yml up -d --build
docker compose up -d --build
```
## Notes