Rename container and image to qwe-salus

Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
This commit is contained in:
2026-04-27 14:47:29 +02:00
parent ec9aa1196e
commit 8696d11514
3 changed files with 9 additions and 9 deletions

View File

@@ -18,7 +18,7 @@ uvicorn app.main:app --reload --port 8080
AUTH_DISABLED=true uvicorn app.main:app --reload --port 8080
# Docker
docker build -t omada-ap-manager:latest .
docker build -t qwe-salus:latest .
docker compose up
```

View File

@@ -34,7 +34,7 @@ Secured via Authentik OIDC, with a full audit log exported as CSV.
1. In Authentik, go to **Admin → Providers → Create**.
2. Choose **OAuth2/OpenID Provider**.
3. Fill in:
- **Name**: `omada-ap-manager`
- **Name**: `qwe-salus`
- **Authorization flow**: your default authorization flow
- **Client type**: `Confidential`
- **Client ID**: auto-generated (copy it)
@@ -85,9 +85,9 @@ Example: `https://auth.stranto.com/application/o/qwe-salus/`
### 3.1 Build the image first (on the Docker host)
```bash
git clone <this-repo> omada-ap-manager
cd omada-ap-manager
docker build -t omada-ap-manager:latest .
git clone <this-repo> qwe-salus
cd qwe-salus
docker build -t qwe-salus:latest .
```
Or add a `build: .` section in the stack (Portainer will build it if the source is available).
@@ -174,7 +174,7 @@ uvicorn app.main:app --reload --port 8080
## Project Structure
```
omada-ap-manager/
qwe-salus/
├── app/
│ ├── main.py # FastAPI routes
│ ├── auth.py # Authentik OIDC logic

View File

@@ -1,10 +1,10 @@
version: "3.8"
services:
omada-ap-manager:
image: omada-ap-manager:latest
qwe-salus:
image: qwe-salus:latest
build: .
container_name: omada-ap-manager
container_name: qwe-salus
ports:
- "8098:8080"
volumes: