Skip to content
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Commit 4b0c7f2

Browse files
author
jokob-sk
committedFeb 28, 2025·
docs, MQTT, GH Actions
1 parent bf3d497 commit 4b0c7f2

8 files changed

+12
-16
lines changed
 

‎.github/workflows/docker_dev.yml

-2
Original file line numberDiff line numberDiff line change
@@ -47,9 +47,7 @@ jobs:
4747
with:
4848
images: |
4949
ghcr.io/jokob-sk/netalertx-dev
50-
ghcr.io/jokob-sk/pi.alert-dev
5150
jokobsk/netalertx-dev
52-
jokobsk/pi.alert-dev
5351
tags: |
5452
type=raw,value=latest
5553
type=ref,event=branch

‎.github/workflows/docker_prod.yml

+1-3
Original file line numberDiff line numberDiff line change
@@ -49,9 +49,7 @@ jobs:
4949
# list of Docker images to use as base name for tags
5050
images: |
5151
ghcr.io/jokob-sk/netalertx
52-
ghcr.io/jokob-sk/pi.alert
53-
jokobsk/netalertx
54-
jokobsk/pi.alert
52+
jokobsk/netalertx
5553
# generate Docker tags based on the following events/attributes
5654
tags: |
5755
type=semver,pattern={{version}},value=${{ inputs.version }}

‎docs/DEBUG_TIPS.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ docker run --rm --network=host \
2828

2929
If possible, check if your issue got fixed in the `_dev` image before opening a new issue. The container is:
3030

31-
`jokobsk/netalertx-dev:latest`
31+
`ghcr.io/jokob-sk/netalertx-dev:latest`
3232

3333
> ⚠ Please backup your DB and config beforehand!
3434

‎docs/DOCKER_COMPOSE.md

+3-3
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ services:
77
netalertx:
88
container_name: netalertx
99
# use the below line if you want to test the latest dev image
10-
# image: "jokobsk/netalertx-dev:latest"
10+
# image: "ghcr.io/jokob-sk/netalertx-dev:latest"
1111
image: "jokobsk/netalertx:latest"
1212
network_mode: "host"
1313
restart: unless-stopped
@@ -39,7 +39,7 @@ services:
3939
hostname: NetAlertX
4040
privileged: true
4141
# use the below line if you want to test the latest dev image
42-
# image: "jokobsk/netalertx-dev:latest"
42+
# image: "ghcr.io/jokob-sk/netalertx-dev:latest"
4343
image: jokobsk/netalertx:latest
4444
environment:
4545
- TZ=Europe/Bratislava
@@ -61,7 +61,7 @@ services:
6161
netalertx:
6262
container_name: netalertx
6363
# use the below line if you want to test the latest dev image
64-
# image: "jokobsk/netalertx-dev:latest"
64+
# image: "ghcr.io/jokob-sk/netalertx-dev:latest"
6565
image: "jokobsk/netalertx:latest"
6666
network_mode: "host"
6767
restart: unless-stopped

‎docs/MIGRATION.md

+4-4
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,7 @@ services:
5555
pialert:
5656
container_name: pialert
5757
# use the below line if you want to test the latest dev image
58-
# image: "jokobsk/netalertx-dev:latest"
58+
# image: "ghcr.io/jokob-sk/netalertx-dev:latest"
5959
image: "jokobsk/pialert:latest"
6060
network_mode: "host"
6161
restart: unless-stopped
@@ -77,7 +77,7 @@ services:
7777
netalertx: # ⚠ This has changed (🟡optional)
7878
container_name: netalertx # ⚠ This has changed (🟡optional)
7979
# use the below line if you want to test the latest dev image
80-
# image: "jokobsk/netalertx-dev:latest"
80+
# image: "ghcr.io/jokob-sk/netalertx-dev:latest"
8181
image: "jokobsk/netalertx:latest" # ⚠ This has changed (🟡optional/🔺required in future)
8282
network_mode: "host"
8383
restart: unless-stopped
@@ -105,7 +105,7 @@ services:
105105
pialert:
106106
container_name: pialert
107107
# use the below line if you want to test the latest dev image
108-
# image: "jokobsk/netalertx-dev:latest"
108+
# image: "ghcr.io/jokob-sk/netalertx-dev:latest"
109109
image: "jokobsk/pialert:latest"
110110
network_mode: "host"
111111
restart: unless-stopped
@@ -127,7 +127,7 @@ services:
127127
netalertx: # ⚠ This has changed (🟡optional)
128128
container_name: netalertx # ⚠ This has changed (🟡optional)
129129
# use the below line if you want to test the latest dev image
130-
# image: "jokobsk/netalertx-dev:latest"
130+
# image: "ghcr.io/jokob-sk/netalertx-dev:latest"
131131
image: "jokobsk/netalertx:latest" # ⚠ This has changed (🟡optional/🔺required in future)
132132
network_mode: "host"
133133
restart: unless-stopped

‎docs/PERFORMANCE.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -75,7 +75,7 @@ services:
7575
netalertx:
7676
container_name: netalertx
7777
# Uncomment the line below to test the latest dev image
78-
# image: "jokobsk/netalertx-dev:latest"
78+
# image: "ghcr.io/jokob-sk/netalertx-dev:latest"
7979
image: "jokobsk/netalertx:latest"
8080
network_mode: "host"
8181
restart: unless-stopped

‎docs/PLUGINS_DEV.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
## 🌟 Create a custom plugin: Overview
1+
# Creating a custom plugin
22

33
NetAlertX comes with a plugin system to feed events from third-party scripts into the UI and then send notifications, if desired. The highlighted core functionality this plugin system supports, is:
44

‎docs/SYNOLOGY_GUIDE.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ services:
3535
netalertx:
3636
container_name: netalertx
3737
# use the below line if you want to test the latest dev image
38-
# image: "jokobsk/netalertx-dev:latest"
38+
# image: "ghcr.io/jokob-sk/netalertx-dev:latest"
3939
image: "jokobsk/netalertx:latest"
4040
network_mode: "host"
4141
restart: unless-stopped

0 commit comments

Comments
 (0)
Please sign in to comment.