An open API service indexing awesome lists of open source software.

https://github.com/nicholaswilde/docker-keel

A multi-architecture image for Keel
https://github.com/nicholaswilde/docker-keel

docker docker-image keel multi-architecture-image

Last synced: about 1 month ago
JSON representation

A multi-architecture image for Keel

Awesome Lists containing this project

README

          

# Docker Keel
[![Docker Image Version (latest by date)](https://img.shields.io/docker/v/nicholaswilde/keel)](https://hub.docker.com/r/nicholaswilde/keel)
[![Docker Pulls](https://img.shields.io/docker/pulls/nicholaswilde/keel)](https://hub.docker.com/r/nicholaswilde/keel)
[![GitHub](https://img.shields.io/github/license/nicholaswilde/docker-keel)](./LICENSE)
[![ci](https://github.com/nicholaswilde/docker-keel/workflows/ci/badge.svg)](https://github.com/nicholaswilde/docker-keel/actions?query=workflow%3Aci)
[![lint](https://github.com/nicholaswilde/docker-keel/workflows/lint/badge.svg?branch=main)](https://github.com/nicholaswilde/docker-keel/actions?query=workflow%3Alint)
[![pre-commit](https://img.shields.io/badge/pre--commit-enabled-brightgreen?logo=pre-commit&logoColor=white)](https://github.com/pre-commit/pre-commit)

A multi-architecture image for [Keel](https://keel.sh/)

## Requirements
- [buildx](https://docs.docker.com/engine/reference/commandline/buildx/)

## Usage
### docker cli
```bash
$ docker run -d \
--name=keel \
-e TZ=America/Los_Angeles `# optional` \
-e PUID=1000 `# optional` \
-e PGID=1000 `# optional` \
-p 9300:9300 \
--restart unless-stopped \
nicholaswilde/keel
```

### docker-compose

See [docker-compose.yaml](./docker-compose.yaml).

## Development

See [Wiki](https://github.com/nicholaswilde/docker-template/wiki/Development).

## Troubleshooting

See [Wiki](https://github.com/nicholaswilde/docker-template/wiki/Troubleshooting).

## Pre-commit hook

If you want to automatically generate `README.md` files with a pre-commit hook, make sure you
[install the pre-commit binary](https://pre-commit.com/#install), and add a [.pre-commit-config.yaml file](./.pre-commit-config.yaml)
to your project. Then run:

```bash
pre-commit install
pre-commit install-hooks
```
Currently, this only works on `amd64` systems.

## License

[Apache 2.0 License](./LICENSE)

## Author
This project was started in 2020 by [Nicholas Wilde](https://github.com/nicholaswilde/).