All Projects → fukamachi → dockerfiles

fukamachi / dockerfiles

Licence: other
Dockerfiles for Common Lisp programming

Programming Languages

shell
77523 projects
Dockerfile
14818 projects

Projects that are alternatives of or similar to dockerfiles

Pgloader
Migrate to PostgreSQL in a single command!
Stars: ✭ 3,754 (+12413.33%)
Mutual labels:  clozure-cl, sbcl
dockerfile-utils
A library and command line interface for formatting and linting Dockerfiles.
Stars: ✭ 17 (-43.33%)
Mutual labels:  dockerfiles
docker-bakery
Dockerfile hierarchy management tool with automatic rebuilding of dependent images when parent changes
Stars: ✭ 30 (+0%)
Mutual labels:  dockerfiles
st2-dockerfiles
StackStorm Dockerfiles (one-service-per-container) to build and push images to the StackStorm Docker registry. Used by stackstorm-ha K8s Helm chart and Docker-compose deployments.
Stars: ✭ 16 (-46.67%)
Mutual labels:  dockerfiles
Containerization-Automation
Study and Use of Containers and Automation Tools
Stars: ✭ 45 (+50%)
Mutual labels:  dockerfiles
docker-get
pull* docker images from git repositories
Stars: ✭ 25 (-16.67%)
Mutual labels:  dockerfiles
docker
Docker containers of elementary OS environments and related tools primarily used in Travis Continuous Integration Automated Testing
Stars: ✭ 18 (-40%)
Mutual labels:  dockerfiles
docker-workshop-1
Beginning workshop for using Docker, and focuses on using it for development. It can be self-guided or delivered to a group (see the linked slide deck)
Stars: ✭ 20 (-33.33%)
Mutual labels:  dockerfiles
sbcli
A REPL for my SBCL needs
Stars: ✭ 68 (+126.67%)
Mutual labels:  sbcl
dockerfiles
Dockerfiles for all LSPs used with lspcontainers.
Stars: ✭ 40 (+33.33%)
Mutual labels:  dockerfiles
dockerfiles
Dockerfiles for various things
Stars: ✭ 37 (+23.33%)
Mutual labels:  dockerfiles
essex
Essex - Boilerplate for Docker Based Projects
Stars: ✭ 32 (+6.67%)
Mutual labels:  dockerfiles
dockerfile
A collection of dockerfile I use
Stars: ✭ 90 (+200%)
Mutual labels:  dockerfiles
docker-images
All my docker images in one mono-repository with multi-arch support
Stars: ✭ 18 (-40%)
Mutual labels:  dockerfiles
docker-repo
A repository stores some dockerfiles or docker-compose files for quickly starting service or service cluster.
Stars: ✭ 26 (-13.33%)
Mutual labels:  dockerfiles
binance-node-docker
Docker image for Binance full and light nodes
Stars: ✭ 24 (-20%)
Mutual labels:  dockerfiles
dockerfile-language-service
Dockerfile language service for providing an API to create feature-rich Dockerfile editors in JavaScript.
Stars: ✭ 15 (-50%)
Mutual labels:  dockerfiles
containers
Repo containing the dockerfiles and scripts to produce the official eclipse-temurin containers.
Stars: ✭ 73 (+143.33%)
Mutual labels:  dockerfiles
cl-slug
Small library to make slugs, mainly for URIs, from english and beyond.
Stars: ✭ 22 (-26.67%)
Mutual labels:  roswell
jlcross
Dockerfiles for arm devices e.g. Raspberry Pi Series
Stars: ✭ 25 (-16.67%)
Mutual labels:  dockerfiles

Dockerfiles for Common Lisp programming

Dockerfiles for each version of Common Lisp implementations and utilities. Currently provides the following products:

  • Roswell, a Common Lisp implementation manager
    Docker Pulls Docker Stars
  • SBCL, a high-performance Common Lisp compiler
    Docker Pulls Docker Stars
  • Clozure CL, an open source Common Lisp implementation hosted by Clozure Associates
    Docker Pulls Docker Stars

Usage

Fetching from Docker Hub

Build images are also available on Docker Hub.

$ docker run -it --rm fukamachi/sbcl
* (lisp-implementation-type)
"SBCL"
* (lisp-implementation-version)
"2.0.0"

Building by your own

$ git clone https://github.com/fukamachi/dockerfiles
$ cd dockerfiles

$ docker buildx create --use

# Build the latest SBCL image (Debian)
$ ./build.sh sbcl
# Build SBCL 2.0.0 image (Debian)
$ ./build.sh sbcl 2.0.0
# Build SBCL 2.0.0 image (Alpine)
$ ./build.sh sbcl 2.0.0 alpine

# Start a REPL
$ docker run -it --rm fukamachi/sbcl:2.0.0-debian
* (lisp-implementation-type)
"SBCL"
* (lisp-implementation-version)
"2.0.0"

Fork

To make GitHub Actions work, add the following secrets` to your forked GitHub repository.

  • DOCKER_HUB_PASSWORD
    • Password for Docker Hub

See GitHub's document.

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].