Skip to content
This repository was archived by the owner on Aug 20, 2025. It is now read-only.
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
16 changes: 16 additions & 0 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
FROM ubuntu:bionic

COPY . /root

RUN apt-get update
RUN apt-get install -y git locales \
&& rm -rf /var/lib/apt/lists/*

RUN echo "LC_ALL=en_US.UTF-8" >> /etc/environment \
&& echo "en_US.UTF-8 UTF-8" >> /etc/locale.gen \
&& echo "LANG=en_US.UTF-8" > /etc/locale.conf \
&& locale-gen en_US.UTF-8

WORKDIR /app

ENTRYPOINT bash /root/gh-jack $@
9 changes: 9 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,15 @@ Features
- define the template position relatively (left, center,...) or absolutely (start date)
- write the message into a repository file for each commit

Quickstart
----------
Build the docker container.

docker build -t ghjack .

Run the docker container from the directory you want your commits to be. A new repo will be initialized for you if one does not exist.

docker run -it --rm -v $(pwd):/app -v $HOME/.gitconfig:/root/.gitconfig ghjack -f -v

Usage
-----
Expand Down