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

https://github.com/bfren/nushell

Custom build images for nushell on Alpine and Debian.
https://github.com/bfren/nushell

Last synced: 5 days ago
JSON representation

Custom build images for nushell on Alpine and Debian.

Awesome Lists containing this project

README

          

# Custom Nushell Config

Default builds of Nushell with some custom config applied.

Creates a Docker image containing:

- `/usr/bin/` -> Nushell executable
- `/root/.config/nushell/` -> Nushell configuration
- `/root/.config/nushell/plugins/` -> Nushell plugins

Which means you can do this in a Dockerfile to install Nushell:

```Dockerfile
FROM quay.io/bfren/nushell:0.112.1-alpine as nushell

FROM alpine as final
COPY --from=nushell / /
```

## Licence

> MIT

## Copyright

> Copyright (c) 2023-2026 bfren (unless otherwise stated)