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
Copy file name to clipboardExpand all lines: README.md
+10-7Lines changed: 10 additions & 7 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -14,7 +14,7 @@ Very little of this gets tested on Windows hosts. Windows Subsystem for Linux (W
14
14
Be the change et al if Windows is your main and you wanna [raise a PR](CONTRIBUTING.md) with broad instructions on getting tooling working under Windows (e.g., docker, poetry, playwright.)
15
15
16
16
**Table of Contents**
17
-
*[python_template](#python_template)
17
+
*[python\_template](#python_template)
18
18
*[Summary](#summary)
19
19
*[Caveat Emptor](#caveat-emptor)
20
20
*[Setup](#setup)
@@ -40,17 +40,20 @@ Be the change et al if Windows is your main and you wanna [raise a PR](CONTRIBUT
40
40
Development environments and tooling are first-class citizens on macOS and *nix. For Windows faithfuls, please setup [WSL](markdown/wsl.md).
41
41
42
42
## Pushing to Docker Hub with CI
43
-
Docker Hub is a cloud-based repository in which Docker users and partners create, test, store and distribute container images. Docker images are pushed to Docker Hub through the docker push command. A single Docker Hub repository can hold many Docker images (stored as tags).
43
+
Docker Hub is a cloud-based repository in which Docker users and partners create, test, store and distribute container images. Docker images are pushed to Docker Hub through the `docker push` command. A single Docker Hub repository can hold many Docker images (stored as tags).
44
44
45
-
Automated CI is implemented via GitHub Actions to build and push this repository's image to Docker Hub in `/.github/workflows/push.yml`.
45
+
Automated CI is implemented via GitHub Actions to build and push this repository's image to Docker Hub in `.github/workflows/ci.yml`.
46
46
47
47
### What you need to modify in this file
48
+
* Add repository secrets (Docker Hub)
49
+
*`DOCKERHUB_TOKEN`
50
+
*`DOCKERHUB_USER`
51
+
* Add environment variable (image name)
52
+
*`APP_NAME`
48
53
49
-
* Look for `images: your-username/your-image-name` and change to your respective Docker Hub username and image name.
50
-
* Add repository secrets for `DOCKERHUB_TOKEN` and `DOCKERHUB_USERNAME` on this repository on GitHub.
51
-
* Here are the [instructions to create a token](https://docs.docker.com/docker-hub/access-tokens/#create-an-access-token).
54
+
[Instructions to create a token](https://docs.docker.com/docker-hub/access-tokens/#create-an-access-token).
52
55
53
-
Here are the [instructions to disable this action](https://docs.github.com/en/actions/managing-workflow-runs/disabling-and-enabling-a-workflow) if you don't want this feature.
56
+
[Instructions to disable this action](https://docs.github.com/en/actions/managing-workflow-runs/disabling-and-enabling-a-workflow) if you don't want this feature.
0 commit comments