KO
|
EN
gitlite — search
Search
#javascript
#python
#hacktoberfest
#react
#ai
#typescript
#llm
#go
#golang
#android
#machine-learning
#rust
#deep-learning
#linux
bun-docker
★ 11
Open GitHub ↗
Dockerizing bun.sh engine
Download README (.md)
Explore Similar Repositories
fastapy
:
A lightweight Python module to read and write FASTA sequence records
Eazy_Downloader
:
Desktop Application cross platform for download vedios from youtube with all qualities, can download single vedio and can download playlist
aws-lambda-handyman
:
No description available.
Crude-Operation-With-PHP
:
A CRUD operation with PHP and MySQL
kdeconnect-rs
:
No description available.
// repository documentation
Was this content helpful?
★ 0
(0 ratings)
Select Rating:
★
★
★
★
★
Submit Feedback
Recent Feedback
×
Download README
Do you want to download the
README.md
file for
bun-docker
?
Download (.md)
[](https://github.com/rsc1975/bun-docker/commits/main) [](https://hub.docker.com/r/dvlprtech/bun) [](https://hub.docker.com/r/dvlprtech/bun) # Docker image for bun Based on [alpine linux](https://hub.docker.com/_/alpine) and [ubuntu](https://hub.docker.com/_/ubuntu), the building process is fired when a new [version of bun](https://github.com/oven-sh/bun/releases) is detected and a scheduled daily image based on bun `canary` version * On new bun version, tags created: `latest` and `x.y.z` based on alpine & `ubuntu` and `x.y.z-ubuntu` based on ubuntu:22.04 * Scheduled every 12h on bun canary version, tag created: `canary` (based on alpine) The image [dvlprtech/bun](https://hub.docker.com/r/dvlprtech/bun) is published in DockerHub ## Getting started ```sh docker run -it --rm dvlprtech/bun --version ``` It will output for instance: ```txt 0.1.9 ``` To launch a local file we need to map the file dir to the container: ```sh echo 'console.log(`Hello ${process.argv[process.argv.length - 1] || "World"} !!`);' > hi.js docker run -it --rm -v$(pwd):/app dvlprtech/bun run /app/hi.js Folks ``` It will show: ``` Hello Folks !! ``` Yo can also use the image as base for your bun own project: ```dockerfile #Dockerfile FROM dvlprtech/bun:latest ... ```