This commit is contained in:
Yaroslav Halchenko 2024-04-09 15:01:29 -04:00 committed by GitHub
commit 28488201b4
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
3 changed files with 30 additions and 1 deletions

6
.codespellrc Normal file
View File

@ -0,0 +1,6 @@
[codespell]
# Ref: https://github.com/codespell-project/codespell#using-a-config-file
skip = .git*,.codespellrc
check-hidden = true
ignore-regex = \bACI\b
# ignore-words-list =

23
.github/workflows/codespell.yml vendored Normal file
View File

@ -0,0 +1,23 @@
# Codespell configuration is within .codespellrc
---
name: Codespell
on:
push:
branches: [master]
pull_request:
branches: [master]
permissions:
contents: read
jobs:
codespell:
name: Check for spelling errors
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Codespell
uses: codespell-project/actions-codespell@v2

View File

@ -127,7 +127,7 @@ Daemon based on liblxc offering a REST API to manage LXC containers.
* [OpenVZ](https://openvz.org/)
OpenVZ is container-based virtualization for Linux. OpenVZ creates multiple secure, isolated Linux containers (otherwise known as VEs or VPSs) on a single physical server enabling better server utilization and ensuring that applications do not conflict.
* [MultiDocker](https://github.com/marty90/multidocker)
Create a secure multi-user Docker machine, where each user is segregated into an indepentent container.
Create a secure multi-user Docker machine, where each user is segregated into an independent container.
* [Lithos](https://github.com/tailhook/lithos/)
Lithos is a process supervisor and containerizer for running services. It is not intended to be system init, but rather tries to be a base tool to build container orchestration.
* [containerd](https://containerd.io/)