Skip to content

Commit 85b21e4

Browse files
committed
Run jenkins
Signed-off-by: Eric Nemchik <[email protected]>
1 parent 8fffb1d commit 85b21e4

File tree

2 files changed

+6
-5
lines changed

2 files changed

+6
-5
lines changed

Jenkinsfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -24,8 +24,8 @@ pipeline {
2424
DEV_DOCKERHUB_IMAGE = 'lsiodev/nginx'
2525
PR_DOCKERHUB_IMAGE = 'lspipepr/nginx'
2626
DIST_IMAGE = 'alpine'
27-
DIST_TAG = '3.18'
28-
DIST_REPO = 'http://dl-cdn.alpinelinux.org/alpine/v3.18/main/'
27+
DIST_TAG = '3.19'
28+
DIST_REPO = 'http://dl-cdn.alpinelinux.org/alpine/v3.19/main/'
2929
DIST_REPO_PACKAGES = 'nginx'
3030
MULTIARCH='true'
3131
CI='true'

README.md

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -81,7 +81,7 @@ services:
8181
- PGID=1000
8282
- TZ=Etc/UTC
8383
volumes:
84-
- </path/to/appdata/config>:/config
84+
- /path/to/nginx/config:/config
8585
ports:
8686
- 80:80
8787
- 443:443
@@ -98,7 +98,7 @@ docker run -d \
9898
-e TZ=Etc/UTC \
9999
-p 80:80 \
100100
-p 443:443 \
101-
-v </path/to/appdata/config>:/config \
101+
-v /path/to/nginx/config:/config \
102102
--restart unless-stopped \
103103
lscr.io/linuxserver/nginx:latest
104104
```
@@ -114,7 +114,7 @@ Containers are configured using parameters passed at runtime (such as those abov
114114
| `-e PUID=1000` | for UserID - see below for explanation |
115115
| `-e PGID=1000` | for GroupID - see below for explanation |
116116
| `-e TZ=Etc/UTC` | specify a timezone to use, see this [list](https://en.wikipedia.org/wiki/List_of_tz_database_time_zones#List). |
117-
| `-v /config` | Contains your www content and all relevant configuration files. |
117+
| `-v /config` | Persistent config files |
118118

119119
## Environment variables from files (Docker secrets)
120120

@@ -292,6 +292,7 @@ Once registered you can define the dockerfile to use with `-f Dockerfile.aarch64
292292

293293
## Versions
294294

295+
* **23.12.23:** - Rebase to Alpine 3.19 with php 8.3.
295296
* **25.05.23:** - Rebase to Alpine 3.18, deprecate armhf.
296297
* **16.01.23:** - Remove nchan module because it keeps causing crashes.
297298
* **22.12.22:** - Rebase to Alpine 3.17 with PHP 8.1, migrate to s6v3.

0 commit comments

Comments
 (0)