-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
5476bf4
commit fca7243
Showing
3 changed files
with
13 additions
and
11 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,32 +1,34 @@ | ||
# docker-tmux-builder | ||
|
||
Builds a [tmux](https://github.com/tmux/tmux) debian package with [Docker](https://www.docker.com/). Supports `amd64`, `arm64` and `armhf` architecture. | ||
Builds a [tmux](https://github.com/tmux/tmux) Debian 12 package with [Docker](https://www.docker.com/). Supports `amd64`, `arm64` and `armhf` architecture. | ||
|
||
When running **make**, tmux is build, packaged and copied to the current directory. | ||
|
||
## Prepare | ||
|
||
git clone https://github.com/casperklein/docker-tmux-builder | ||
cd docker-tmux-builder | ||
|
||
## Build tmux debian package | ||
make | ||
|
||
## Build tmux debian package for older debian versions, e.g. Debian 10 (Buster) | ||
DEBIAN=10 | ||
sed -i 's|^FROM.*|FROM debian:'$DEBIAN'-slim|' Dockerfile | ||
make | ||
|
||
## Install tmux debian package | ||
|
||
make install | ||
|
||
## Copy tmux.conf to /etc/tmux.conf and tmux.pin to /etc/apt/preferences.d/tmux | ||
|
||
make copy-conf | ||
|
||
## Bash completion | ||
|
||
See `bash_completion_tmux.sh` for details. | ||
|
||
## Uninstall tmux | ||
|
||
make uninstall | ||
|
||
## Cleanup build environment | ||
|
||
make clean |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters