Skip to content

Commit

Permalink
update to next patchlevel release
Browse files Browse the repository at this point in the history
  • Loading branch information
GinoHarlos committed Oct 2, 2024
1 parent 1ec7d94 commit 1d4ed56
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 10 deletions.
8 changes: 4 additions & 4 deletions docs/README.ADVANCED.BUILD.PRE.INSTALLED.ROLE.md
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ docker image inspect --format '{{ index .Config.Labels "org.label-schema.docker.
## Build a deployment container image with docker and pre installed role ```( optionally with time )```
```bash
declare -A roles[master]="primary directory node" roles[slave]="replica directory node" roles[backup]="backup directory node" roles[member]="managed node"; \
MAJOR=5; MINOR=0; PATCH=8; IMAGE="univention/univention-corporate-server"; TAG="latest"; \
MAJOR=5; MINOR=0; PATCH=9; IMAGE="univention/univention-corporate-server"; TAG="latest"; \
for role in ${!roles[*]}; do \
time docker build \
--build-arg role="${role}" \
Expand All @@ -68,7 +68,7 @@ Successfully tagged univention/univention-corporate-server-${role}:latest
### Container image build with docker, pre installed role and as Active Directory-compatible Domain Controller ```( experimental )```
```bash
declare -A roles[master]="primary directory node" roles[slave]="replica directory node" roles[backup]="backup directory node" roles[member]="managed node"; \
MAJOR=5; MINOR=0; PATCH=8; IMAGE="univention/univention-corporate-server"; TAG="latest"; APPS="samba4"; \
MAJOR=5; MINOR=0; PATCH=9; IMAGE="univention/univention-corporate-server"; TAG="latest"; APPS="samba4"; \
for role in ${!roles[*]}; do \
apps=$([[ ${role} =~ member ]] && echo -e '' || echo -e '-ad-dc'); \
time docker build \
Expand Down Expand Up @@ -96,7 +96,7 @@ docker images --format 'table {{ .Repository }}\t\t{{ .Size }}' univention/unive
## Build a deployment container image with podman and pre installed role ```( optionally with time )```
```bash
declare -A roles[master]="primary directory node" roles[slave]="replica directory node" roles[backup]="backup directory node" roles[member]="managed node"; \
MAJOR=5; MINOR=0; PATCH=8; IMAGE="univention/univention-corporate-server"; TAG="latest"; \
MAJOR=5; MINOR=0; PATCH=9; IMAGE="univention/univention-corporate-server"; TAG="latest"; \
for role in ${!roles[*]}; do \
time podman build \
--format docker \
Expand All @@ -119,7 +119,7 @@ Successfully tagged univention/univention-corporate-server-${role}:latest
### Container image build with podman, pre installed role and as Active Directory-compatible Domain Controller ```( experimental )```
```bash
declare -A roles[master]="primary directory node" roles[slave]="replica directory node" roles[backup]="backup directory node" roles[member]="managed node"; \
MAJOR=5; MINOR=0; PATCH=8; IMAGE="univention/univention-corporate-server"; TAG="latest"; APPS="samba4"; \
MAJOR=5; MINOR=0; PATCH=9; IMAGE="univention/univention-corporate-server"; TAG="latest"; APPS="samba4"; \
for role in ${!roles[*]}; do \
apps=$([[ ${role} =~ member ]] && echo -e '' || echo -e '-ad-dc'); \
time podman build \
Expand Down
8 changes: 4 additions & 4 deletions docs/README.ADVANCED.BUILD.md
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ STDOUT ( timeing )
```
## Build a deployment container image with different repository server using docker build ```( optionally with time )```
```bash
MAJOR=5; MINOR=0; PATCH=8; IMAGE="univention/univention-corporate-server"; TAG="test"; UPDATES="updates-test.software-univention.de"; \
MAJOR=5; MINOR=0; PATCH=9; IMAGE="univention/univention-corporate-server"; TAG="test"; UPDATES="updates-test.software-univention.de"; \
time docker build \
--build-arg DATE=$(date -u +"%Y-%m-%dT%H:%M:%SZ") \
--build-arg UPDATES=${UPDATES} \
Expand All @@ -40,7 +40,7 @@ docker image inspect univention/univention-corporate-server:test
```
## Build a deployment container image with different repository server using podman build ```( optionally with time )```
```bash
MAJOR=5; MINOR=0; PATCH=8; IMAGE="univention/univention-corporate-server"; TAG="test"; UPDATES="updates-test.software-univention.de"; \
MAJOR=5; MINOR=0; PATCH=9; IMAGE="univention/univention-corporate-server"; TAG="test"; UPDATES="updates-test.software-univention.de"; \
time podman build \
--format docker \
--build-arg DATE=$(date -u +"%Y-%m-%dT%H:%M:%SZ") \
Expand All @@ -65,7 +65,7 @@ podman image inspect univention/univention-corporate-server:test
```
## Build a deployment container image as a slimify variant using docker build ```( optionally with time )```
```bash
MAJOR=5; MINOR=0; PATCH=8; IMAGE="univention/univention-corporate-server"; TAG="test"; SLIM="slim"; UPDATES="updates-test.software-univention.de"; \
MAJOR=5; MINOR=0; PATCH=9; IMAGE="univention/univention-corporate-server"; TAG="test"; SLIM="slim"; UPDATES="updates-test.software-univention.de"; \
time docker build \
--build-arg SLIM=${SLIM} \
--build-arg DATE=$(date -u +"%Y-%m-%dT%H:%M:%SZ") \
Expand All @@ -90,7 +90,7 @@ docker image inspect univention/univention-corporate-server:test-slim
```
## Build a deployment container image as a slimify variant using podman build ```( optionally with time )```
```bash
MAJOR=5; MINOR=0; PATCH=8; IMAGE="univention/univention-corporate-server"; TAG="test"; SLIM="slim"; UPDATES="updates-test.software-univention.de"; \
MAJOR=5; MINOR=0; PATCH=9; IMAGE="univention/univention-corporate-server"; TAG="test"; SLIM="slim"; UPDATES="updates-test.software-univention.de"; \
time podman build \
--format docker \
--build-arg SLIM=${SLIM} \
Expand Down
4 changes: 2 additions & 2 deletions docs/README.BUILD.md
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ STDOUT ( timeing )
```
## Build a deployment container image with docker ```( optionally with time )```
```bash
MAJOR=5; MINOR=0; PATCH=8; IMAGE="univention/univention-corporate-server"; TAG="latest"; \
MAJOR=5; MINOR=0; PATCH=9; IMAGE="univention/univention-corporate-server"; TAG="latest"; \
time docker build \
--build-arg DATE=$(date -u +"%Y-%m-%dT%H:%M:%SZ") \
--build-arg MAJOR=${MAJOR} \
Expand All @@ -39,7 +39,7 @@ docker image inspect univention/univention-corporate-server:latest
```
## Build a deployment container image with podman ```( optionally with time )```
```bash
MAJOR=5; MINOR=0; PATCH=8; IMAGE="univention/univention-corporate-server"; TAG="latest"; \
MAJOR=5; MINOR=0; PATCH=9; IMAGE="univention/univention-corporate-server"; TAG="latest"; \
time podman build \
--format docker \
--build-arg DATE=$(date -u +"%Y-%m-%dT%H:%M:%SZ") \
Expand Down

0 comments on commit 1d4ed56

Please sign in to comment.