-
Notifications
You must be signed in to change notification settings - Fork 37
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
13 changed files
with
56 additions
and
39 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -5,7 +5,7 @@ name: DIP | |
- cron: '35 21 25 * *' | ||
jobs: | ||
dip: | ||
runs-on: ubuntu-latest | ||
runs-on: ubuntu-20.04 | ||
name: Check whether images are up-to-date | ||
steps: | ||
- uses: actions/[email protected] | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -6,7 +6,7 @@ name: Dockerhub | |
- '*' | ||
jobs: | ||
release: | ||
runs-on: ubuntu-latest | ||
runs-on: ubuntu-20.04 | ||
steps: | ||
- name: Set up QEMU | ||
uses: docker/[email protected] | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -10,11 +10,11 @@ jobs: | |
strategy: | ||
matrix: | ||
include: | ||
- os: macos-latest | ||
- os: macos-10.15 | ||
shasum: shasum -a 512 | ||
- os: ubuntu-latest | ||
- os: ubuntu-20.04 | ||
shasum: sha512sum | ||
- os: windows-latest | ||
- os: windows-2019 | ||
shasum: sha512sum | ||
steps: | ||
- uses: actions/[email protected] | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -6,7 +6,7 @@ name: Integration | |
- dependabot/** | ||
jobs: | ||
build: | ||
runs-on: ubuntu-latest | ||
runs-on: ubuntu-20.04 | ||
steps: | ||
- uses: actions/[email protected] | ||
- uses: actions/[email protected] | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -8,11 +8,11 @@ jobs: | |
strategy: | ||
matrix: | ||
include: | ||
- os: macos-latest | ||
- os: macos-10.15 | ||
shasum: shasum -a 512 | ||
- os: ubuntu-latest | ||
- os: ubuntu-20.04 | ||
shasum: sha512sum | ||
- os: windows-latest | ||
- os: windows-2019 | ||
shasum: sha512sum | ||
steps: | ||
- uses: actions/[email protected] | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -9,7 +9,7 @@ jobs: | |
uses: ./.github/workflows/release.yml | ||
snapcraft: | ||
needs: [release] | ||
runs-on: ubuntu-latest | ||
runs-on: ubuntu-20.04 | ||
steps: | ||
- uses: actions/[email protected] | ||
with: | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
11 changes: 11 additions & 0 deletions
11
docs/quickstarts/snippets/n3dr/docker/CONFIG_REPOSITORY.md
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
# config repository docker | ||
|
||
```bash | ||
./n3dr configRepository \ | ||
-u admin \ | ||
-p $(docker exec -it nexus3-n3dr-src cat /nexus-data/admin.password) \ | ||
-n localhost:8081 \ | ||
--https=false \ | ||
--configRepoName docker-images \ | ||
--configRepoType docker | ||
``` |
11 changes: 11 additions & 0 deletions
11
docs/quickstarts/snippets/n3dr/docker/CONFIG_REPOSITORY_DEST.md
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
# config repository docker dest | ||
|
||
```bash | ||
./n3dr configRepository \ | ||
-u admin \ | ||
-p $(docker exec -it nexus3-n3dr-dest cat /nexus-data/admin.password) \ | ||
-n localhost:9000 \ | ||
--https=false \ | ||
--configRepoName docker-images \ | ||
--configRepoType docker | ||
``` |
13 changes: 13 additions & 0 deletions
13
docs/quickstarts/snippets/n3dr/docker/POPULATE_ARTIFACTS.md
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
# populate artifacts | ||
|
||
```bash | ||
docker login localhost:8082 \ | ||
-p $(docker exec -it nexus3-n3dr-src cat /nexus-data/admin.password) \ | ||
-u admin && \ | ||
for d in $(seq 5); do | ||
docker_registry_tag=localhost:8082/repository/docker-images/utrecht/n3dr:6.${d}.0 | ||
docker pull "utrecht/n3dr:6.${d}.0" | ||
docker tag "utrecht/n3dr:6.${d}.0" localhost:8082/repository/docker-images/utrecht/n3dr:6.${d}.0 | ||
docker push localhost:8082/repository/docker-images/utrecht/n3dr:6.${d}.0 | ||
done | ||
``` |