-
Notifications
You must be signed in to change notification settings - Fork 6
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix: remove maven-group, add docker-proxy (#120)
- Loading branch information
1 parent
1cdf642
commit ffd20ad
Showing
12 changed files
with
39 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
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 |
---|---|---|
@@ -0,0 +1,3 @@ | ||
Artipie Docker Proxy repository redirects all pull requests to specified remote registries. Storage is optional here: | ||
if not added, no images will be cached and <code>push</code> to the repository is not allowed. | ||
If storage is set, remote images are cached and <code>push</code> works as usual. |
This file was deleted.
Oops, something went wrong.
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 |
---|---|---|
@@ -1,9 +1,3 @@ | ||
repo: | ||
type: {{type}} | ||
storage: default | ||
permissions: | ||
{{user}}: | ||
- upload | ||
- download | ||
"*": | ||
- download |
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,7 @@ | ||
repo: | ||
type: docker-proxy | ||
storage: default | ||
# proxy for Docker registry | ||
remotes: | ||
- url: registry-1.docker.io | ||
- url: mcr.microsoft.com |
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,6 @@ | ||
repo: | ||
type: file-proxy | ||
storage: default | ||
# proxy some general file storage | ||
remotes: | ||
- uri: https://some-general-storage.com |
This file was deleted.
Oops, something went wrong.
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 |
---|---|---|
@@ -1,14 +1,6 @@ | ||
repo: | ||
type: maven-proxy | ||
storage: default | ||
# proxy for Apache Maven central | ||
# proxy for Apache Maven central (several remotes supported) | ||
remotes: | ||
- uri: https://repo.maven.apache.org/maven2 | ||
cache: | ||
storage: default | ||
permissions: | ||
{{user}}: | ||
- upload | ||
- download | ||
"*": | ||
- download |
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,6 @@ | ||
repo: | ||
type: npm-proxy | ||
storage: default | ||
# proxy for NPM public registry | ||
remotes: | ||
- uri: https://registry.npmjs.org |
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,6 @@ | ||
repo: | ||
type: php-proxy | ||
storage: default | ||
# proxy for php composer central repository | ||
remotes: | ||
- uri: https://packagist.org/ |
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,6 @@ | ||
repo: | ||
type: pypi-proxy | ||
storage: default | ||
# proxy for PyPI repository | ||
remotes: | ||
- uri: https://pypi.org/pypi |