Skip to content

Commit 6f8fb21

Browse files
author
jokob-sk
committed
docs, GH Actions
1 parent 4b0c7f2 commit 6f8fb21

10 files changed

+24
-14
lines changed

.github/workflows/social_post_on_release.yml

+11-1
Original file line numberDiff line numberDiff line change
@@ -25,13 +25,23 @@ jobs:
2525
- name: Checkout repository
2626
uses: actions/checkout@v3
2727

28+
- name: Set Git config
29+
run: |
30+
git config --global user.email "github-actions@github.com"
31+
git config --global user.name "GitHub Actions"
32+
2833
- name: Create tweet file
2934
run: |
3035
echo "🎉 New release: **${{ github.event.release.name }}** is live! 🚀" > .github/tweet.md
3136
echo "Check it out here: ${{ github.event.release.html_url }}" >> .github/tweet.md
3237
git add .github/tweet.md
3338
git commit -m "Add release tweet for ${{ github.event.release.name }}"
34-
git push
39+
40+
- name: Push changes
41+
run: |
42+
git push https://github.com/${{ github.repository }}.git HEAD:main
43+
env:
44+
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
3545

3646
- name: Tweet
3747
uses: twitter-together/action@v3

dockerfiles/README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ docker run -d --rm --network=host \
3131
-e PUID=200 -e PGID=300 \
3232
-e TZ=Europe/Berlin \
3333
-e PORT=20211 \
34-
jokobsk/netalertx:latest
34+
ghcr.io/jokob-sk/netalertx:latest
3535
```
3636

3737
See alternative [docked-compose examples](https://github.com/jokob-sk/NetAlertX/blob/main/docs/DOCKER_COMPOSE.md).

docs/DEBUG_TIPS.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ docker run --rm --network=host \
1818
-v local/path/netalertx/db:/app/db \
1919
-e TZ=Europe/Berlin \
2020
-e PORT=20211 \
21-
jokobsk/netalertx:latest
21+
ghcr.io/jokob-sk/netalertx:latest
2222

2323
```
2424

docs/DOCKER_COMPOSE.md

+3-3
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ services:
88
container_name: netalertx
99
# use the below line if you want to test the latest dev image
1010
# image: "ghcr.io/jokob-sk/netalertx-dev:latest"
11-
image: "jokobsk/netalertx:latest"
11+
image: "ghcr.io/jokob-sk/netalertx:latest"
1212
network_mode: "host"
1313
restart: unless-stopped
1414
volumes:
@@ -40,7 +40,7 @@ services:
4040
privileged: true
4141
# use the below line if you want to test the latest dev image
4242
# image: "ghcr.io/jokob-sk/netalertx-dev:latest"
43-
image: jokobsk/netalertx:latest
43+
image: ghcr.io/jokob-sk/netalertx:latest
4444
environment:
4545
- TZ=Europe/Bratislava
4646
restart: always
@@ -62,7 +62,7 @@ services:
6262
container_name: netalertx
6363
# use the below line if you want to test the latest dev image
6464
# image: "ghcr.io/jokob-sk/netalertx-dev:latest"
65-
image: "jokobsk/netalertx:latest"
65+
image: "ghcr.io/jokob-sk/netalertx:latest"
6666
network_mode: "host"
6767
restart: unless-stopped
6868
volumes:

docs/FILE_PERMISSIONS.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
> -e TZ=Europe/Berlin \
88
> -e PUID=200 -e PGID=200 \
99
> -e PORT=20211 \
10-
> jokobsk/netalertx:latest
10+
> ghcr.io/jokob-sk/netalertx:latest
1111
> ```
1212
NetAlertX runs on an Nginx web server. On Alpine Linux, Nginx operates as the `nginx` user (if PUID and GID environment variables are not specified, nginx user UID will be set to 102, and its supplementary group `www-data` ID to 82). Consequently, files accessed or written by the NetAlertX application are owned by `nginx:www-data`.
1313

docs/MIGRATION.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -78,7 +78,7 @@ services:
7878
container_name: netalertx # ⚠ This has changed (🟡optional)
7979
# use the below line if you want to test the latest dev image
8080
# image: "ghcr.io/jokob-sk/netalertx-dev:latest"
81-
image: "jokobsk/netalertx:latest" # ⚠ This has changed (🟡optional/🔺required in future)
81+
image: "ghcr.io/jokob-sk/netalertx:latest" # ⚠ This has changed (🟡optional/🔺required in future)
8282
network_mode: "host"
8383
restart: unless-stopped
8484
volumes:
@@ -128,7 +128,7 @@ services:
128128
container_name: netalertx # ⚠ This has changed (🟡optional)
129129
# use the below line if you want to test the latest dev image
130130
# image: "ghcr.io/jokob-sk/netalertx-dev:latest"
131-
image: "jokobsk/netalertx:latest" # ⚠ This has changed (🟡optional/🔺required in future)
131+
image: "ghcr.io/jokob-sk/netalertx:latest" # ⚠ This has changed (🟡optional/🔺required in future)
132132
network_mode: "host"
133133
restart: unless-stopped
134134
volumes:

docs/PERFORMANCE.md

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

docs/REVERSE_DNS.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ You can specify the DNS server in the docker-compose to improve name resolution
3434
services:
3535
netalertx:
3636
container_name: netalertx
37-
image: "jokobsk/netalertx:latest"
37+
image: "ghcr.io/jokob-sk/netalertx:latest"
3838
restart: unless-stopped
3939
volumes:
4040
- /home/netalertx/config:/app/config
@@ -60,7 +60,7 @@ version: "3"
6060
services:
6161
netalertx:
6262
container_name: netalertx
63-
image: "jokobsk/netalertx:latest"
63+
image: "ghcr.io/jokob-sk/netalertx:latest"
6464
restart: unless-stopped
6565
volumes:
6666
- ./config/app.conf:/app/config/app.conf

docs/REVERSE_PROXY.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -477,7 +477,7 @@ docker run -d --rm --network=host \
477477
-v /appl/docker/netalertx/default:/etc/nginx/sites-available/default \
478478
-e TZ=Europe/Amsterdam \
479479
-e PORT=20211 \
480-
jokobsk/netalertx:latest
480+
ghcr.io/jokob-sk/netalertx:latest
481481

482482
```
483483

docs/SYNOLOGY_GUIDE.md

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

0 commit comments

Comments
 (0)