-
Notifications
You must be signed in to change notification settings - Fork 10
Installation
- Docker
- Docker Compose
- APT (Ubuntu, Debian)
- RPM (CentOS, RHEL)
- AUR (Arch Linux)
- Homebrew (macOS, Linux)
- Kubernetes
- Manual Installation
- Local Build
Run one of the below commands as root or a member of the docker
group:
The following command will run a container that plays the movie directly in your terminal.
sudo docker run --rm -it ghcr.io/gabe565/ascii-movie play
The following command will run a Telnet server on port 23
and an SSH server on port 2222
.
sudo docker run --detach --port=22:22 --port=23:23 ghcr.io/gabe565/ascii-movie serve
First you will need a docker-compose.yaml
file, such as the one included in this repo. Run the below command as root or a member of the docker
group:
sudo docker compose up -d
-
If you don't have it already, install the
ca-certificates
packagesudo apt install ca-certificates
-
Add gabe565 apt repository
echo 'deb [trusted=yes] https://apt.gabe565.com /' | sudo tee /etc/apt/sources.list.d/gabe565.list
-
Update apt repositories
sudo apt update
-
Install ASCII Movie
sudo apt install ascii-movie
-
If you don't have it already, install the
ca-certificates
packagesudo yum install ca-certificates
-
Add gabe565 rpm repository to
/etc/yum.repos.d/gabe565.repo
[gabe565] name=gabe565 baseurl=https://rpm.gabe565.com enabled=1 gpgcheck=0
-
Install ASCII Movie
sudo yum install ascii-movie
Install ascii-movie-bin with your AUR helper of choice.
Install ASCII Movie from gabe565/homebrew-tap:
brew install gabe565/tap/ascii-movie
A Helm chart is available to make Kubernetes simplify deployment to Kubernetes.
helm install ascii-movie oci://ghcr.io/gabe565/charts/ascii-movie
For more information, see charts.gabe565.com or Artifact Hub.
Download and run the latest release binary for your system and architecture.
# Compile the app
go install github.com/gabe565/ascii-movie@latest
# Run the app in your terminal
ascii-movie play
# Or run it as a server
ascii-movie serve
# Now, run `ssh localhost` or `telnet localhost` to watch the movie!