Skip to content

Commit 112ea43

Browse files
committed
add new version
1 parent dd1ee04 commit 112ea43

6 files changed

Lines changed: 11 additions & 7 deletions

File tree

CONTRIBUTING.MD

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ Before creating a release, make sure that:
4040
- you update the version in the `pom.xml` to the next version
4141
- update all the mentioned versions in the documentation and docker examples
4242
- you are able to run the docker containers - build them locally to do that
43-
- run `./mvnw jib:dockerBuild` to create the container locally
43+
- run `./mvnw jib:dockerBuild` to create the container locally (needs docker installed)
4444
- you might have to temporarily set the `architecture` variable to `arm64`
4545
- use the example files in the `docker` directory
4646
- you might have to temporarily add e.g. `-amd64` or `-arm64` to the image name to make it work

README.md

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ docker run \
4343
--name re-director \
4444
-p 80:80 \
4545
-v re-director-data:/data \
46-
jensknipper/re-director:0.0.8
46+
jensknipper/re-director:0.0.9
4747
```
4848

4949
### Docker Compose
@@ -54,7 +54,8 @@ Simply save the following code into a `docker-compose.yml` file and run `docker-
5454
```yaml
5555
services:
5656
re-director:
57-
image: jensknipper/re-director:0.0.8
57+
image: jensknipper/re-director:0.0.9
58+
restart: unless-stopped
5859
ports:
5960
- "80:80"
6061
volumes:

docker/docker-compose-traefik.yml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
services:
22
traefik:
33
image: traefik:v3.4
4+
restart: unless-stopped
45
command:
56
- "--providers.docker"
67
- "--entrypoints.web.address=:80"
@@ -10,7 +11,8 @@ services:
1011
- /var/run/docker.sock:/var/run/docker.sock
1112

1213
re-director:
13-
image: jensknipper/re-director:0.0.8
14+
image: jensknipper/re-director:0.0.9
15+
restart: unless-stopped
1416
expose:
1517
- 80
1618
volumes:

docker/docker-compose.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
services:
22
re-director:
3-
image: jensknipper/re-director:0.0.8
3+
image: jensknipper/re-director:0.0.9
4+
restart: unless-stopped
45
ports:
56
- "80:80"
67
volumes:

docker/docker-run.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,4 +2,4 @@ docker run \
22
--name re-director \
33
-p 80:80 \
44
-v re-director-data:/data \
5-
jensknipper/re-director:0.0.8
5+
jensknipper/re-director:0.0.9

pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111

1212
<groupId>de.jensknipper</groupId>
1313
<artifactId>re-director</artifactId>
14-
<version>0.0.8</version>
14+
<version>0.0.9</version>
1515
<name>re:Director</name>
1616
<description>redirect stuff</description>
1717

0 commit comments

Comments
 (0)