You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
* Add support for custom Docker registries
This allows a user to set the `CONTAINER_REGISTRY` environment variable
which can be used in place of the default of ghcr.io if a customer would
like to mirror our image so they can self host behind any proxies or other
custom network stack.
* Add details to README about a custom docker registry
Copy file name to clipboardExpand all lines: README.md
+11-2Lines changed: 11 additions & 2 deletions
Original file line number
Diff line number
Diff line change
@@ -48,12 +48,21 @@ In order for GitHub Actions Importer to communicate with your current CI/CD serv
48
48
49
49
```bash
50
50
$ gh actions-importer configure
51
-
? Enter value for'GITHUB_ACCESS_TOKEN' (leave empty to skip):
51
+
? Enter value for'GITHUB_ACCESS_TOKEN' (leave empty to skip):
52
52
...
53
53
```
54
54
55
55
You can find detailed information about using environment variables in the platform-specific documentation.
56
56
57
+
#### Using a custom Docker registry
58
+
59
+
We highly recommend using the [official GitHub Container Registry to pull the GitHub Actions Importer Docker image](https://github.com/actions-importer/preview/pkgs/container/cli/). However, if you need to use a custom Docker registry, you can configure GitHub Actions Importer to use a custom Docker registry by setting the `CONTAINER_REGISTRY` environment variable in your `.env.local` file.
60
+
61
+
```bash
62
+
# .env.local
63
+
CONTAINER_REGISTRY=my-custom-registry.com
64
+
```
65
+
57
66
### Documentation
58
67
59
68
Detailed information about how to use GitHub Actions Importer can be found in the [documentation](https://docs.github.com/en/actions/migrating-to-github-actions/automating-migration-with-github-actions-importer).
@@ -70,7 +79,7 @@ You can access recorded demos of GitHub Actions Importer performing migrations t
70
79
71
80
### Self-guided learning
72
81
73
-
The GitHub Actions Importer labs repository contains platform-specific learning paths that teach you how to use GitHub Actions Importer and how to approach migrations to GitHub Actions. To learn more, see the [GitHub Actions Importer labs repository](https://github.com/actions/importer-labs/tree/main#readme).
82
+
The GitHub Actions Importer labs repository contains platform-specific learning paths that teach you how to use GitHub Actions Importer and how to approach migrations to GitHub Actions. To learn more, see the [GitHub Actions Importer labs repository](https://github.com/actions/importer-labs/tree/main#readme).
0 commit comments