Skip to content

A docker image built through github action with git commit version tag

License

Notifications You must be signed in to change notification settings

xiaoyao9184/docker-shinobi

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

13 Commits
 
 
 
 
 
 

Repository files navigation

Docker Shinobi

A docker image built through github action with git commit version tag

Why

I found that shinobi's docker image is difficult to find. The code on github is no longer up to date. The image on docker hub is very old and no ARM support.

Since shinobi has moved gitlab and published the image to the gitlab registry, it is limited by the gitlab ci build cannot be released in time, and the old image cannot be retained because there is no really version number.

After reviewing the following items

This project will use github action and docker hub build and publish images, and try to keep it as clean without custom configuration file.

Tags

The images of this project will be published to docker hub xiaoyao9184/docker-shinobi.

Since there is no really version number, and cannot create a image for each commit, so an good idea use manually trigger the action and tag it with commit id. See this article for more details.

Default image name format is ${DOCKER_USERNAME}/${image_name}, the image_name filled in when you manually trigger the action.

Default image tag format is ${BRANCH_PREFIX}${ARCH_TYPE}${NO_DB_SUFIX}, Very similar with official. BRANCH_PREFIX same as commit_id filled in when you manually trigger the action, ARCH_TYPE only allowed -amd64 or -nvidia or -arm32v7 or -arm64v8, NO_DB_SUFIX only allowed -no-db or ``,

like this, each tag only support one platform:

Tag Platforms
dev-amd64 linux/amd64
dev-amd64-no-db linux/amd64
dev-arm32v7 linux/arm/v7
dev-arm32v7-no-db linux/arm/v7
dev-arm64v8 linux/arm64
dev-arm64v8-no-db linux/arm64
dev-nvidia linux/amd64
dev-nvidia-no-db linux/amd64

Two special tags merge multiple platforms:

Tag Sameas Platforms
dev dev-amd64 linux/amd64
dev-arm32v7 linux/arm/v7
dev-arm64v8 linux/arm64
dev-no-db dev-amd64-no-db linux/amd64
dev-arm32v7-no-db linux/arm/v7
dev-arm64v8-no-db linux/arm64

If you want to fixed version and this project does not provide, you can fork this project and build it your own image. You need to set two repository variables, DOCKER_USERNAME and DOCKER_TOKEN. see this

About

A docker image built through github action with git commit version tag

Topics

Resources

License

Stars

Watchers

Forks