Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/mihnita/fake_icu
Testing actions
https://github.com/mihnita/fake_icu
Last synced: 14 days ago
JSON representation
Testing actions
- Host: GitHub
- URL: https://github.com/mihnita/fake_icu
- Owner: mihnita
- License: other
- Created: 2023-04-04T18:59:11.000Z (almost 2 years ago)
- Default Branch: main
- Last Pushed: 2024-11-01T16:04:57.000Z (3 months ago)
- Last Synced: 2024-11-09T11:44:19.049Z (2 months ago)
- Language: C++
- Size: 94.4 MB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 2
-
Metadata Files:
- Readme: .github/README.md
- Contributing: CONTRIBUTING.md
- License: LICENSE
- Security: SECURITY.md
Awesome Lists containing this project
README
## How to create a Fedora docker image
For the general process and concepts see:
https://docs.github.com/en/packages/working-with-a-github-packages-registry/working-with-the-container-registryFor our case I replaced the generic names with our own owner / repo / names / etc.
Run
```
docker login ghcr.io
```When prompted use these:
* **User:** the github user
* **Password:** the github tokenUpdate the timestamp (`20240929`) with the current date, ISO style:
```
docker build --tag ghcr.io/unicode-org/fedora-docker-gcr:20240929 -f Dockerfile_fedora .
docker push ghcr.io/unicode-org/fedora-docker-gcr:20240929
```For more info see:
https://docs.github.com/en/actions/use-cases-and-examples/publishing-packages/publishing-docker-imagesand:
https://stackoverflow.com/questions/64033686/how-can-i-use-private-docker-image-in-github-actionsTo consider: generate and publish the docker image from a GitHub action.
---
The `DOCKER_CONTAINER_USER_NAME` and `DOCKER_CONTAINER_REGISTRY_TOKEN` used
in the action file for user and password are secrets already created.They can be any GitHub user + token with the proper access rights.
Right now this is a token of the icu-robot account.