Important
The project is not stable yet.
Introducing Kubernetes alike features for docker. Deploy to docker daemons with ease using the simplecontainer. Works as an overlay over docker daemon and providing API for orchestrating containers and additional resources like configuration, secret, etc.
Simplecontainer runs as container itself with the access to the /var/run/docker.sock to orchestrate containers.
mTLS is used to authenticate the clients and security is on high level.
In practice, it would look like this:
smr apply https://raw.githubusercontent.com/simplecontainer/examples/refs/heads/main/tests/minimal/definitions/Containers.yaml
smr ps
NODE RESOURCE PORTS DEPS ENGINE STATE SMR STATE
smr-agent-2 containers/example/example-busybox-1 - - running (docker) running (9s)
smr-agent-2 containers/example/example-busybox-2 - - running (docker) running (9s)
Make VMs, On-prem servers, or trifty VMs stable resources for serverless with simplecontainer.
To explore more dive into this README.md.
Simplecontainer relies on etcd, RAFT and flannel to enable cluster of docker daemons.
The etcd is started in the single instance mode, embedded in the simplecontainer itself. RAFT protocol is used to enable multi node architecture, also embeded in the simplecontainer - not to be confused with cluster of etcd nodes. Flannel is used to configure overlay network so that each container can reach other containers in the cluster.
Flannel can be configured in multiple ways as flannel itself supports multiple backends. Default backend for simplecontainer is wiregurad since it is secure by default and overlay communication is encrypted over non-secure networks.
Important
To use flannel wireguard network encryption wireguard package needs to be installed on the machine running simplecontainer. See more at: https://www.wireguard.com/install/
In the simple terms the simplecontainer works similar as git where every instance holds copy of all state information.
The simplecontainer manager is designed to ease life for the developers and DevOps engineers running containers on Docker.
It runs as container on top of container engine: docker supported only currently. It requires privilleges over container engine socket. Afterward, it exposes API for container manipulation and orchestration.
The simplecontainer introduces the following:
- Single docker daemon or cluster of docker daemons
- Overlay networking for containers using flannel (encrypted using wireguard by default)
- Integrated DNS server isolated from Docker daemon
- GitOps: deploy containers on Docker using GitOps pattern
- Replication of containers in cluster of Docker daemons
- Reconciliation and tracking the lifecycle of the Docker containers
- Reliable dependency ordering using readiness probes
- Server side templating of the container objects to leverage secrets, configuration, and resources
- Secrets, Configuration and Resources objects for external configuration
- CLI to interact with the simplecontainer
- Fast learning curve - simplicity and deterministic behavior
- UI dashboard for better overview with real-time updates
The smrmgr is bash script for management of the simplecontainer. It is used for:
- Downloading and installing client
- Starting the node in single or cluster mode
- Starting the node and joining to the existing cluster
- Various options and configuration simplified
curl -sL https://raw.githubusercontent.com/simplecontainer/smr/refs/heads/main/scripts/production/smrmgr.sh -o smrmgr
chmod +x smrmgr
sudo mv smrmgr /usr/local/bin
sudo smrmgr install
The smr is client used to communicate to the local/external simplecontainer agents running on nodes.
The smrmgr automatically downloads the client and places it under /usr/local/bin/smr
.
To manually install, start and manage simplecontainer nodes download the client from the releases:
https://github.com/simplecontainer/client/releases
LATEST_VERSION=$(curl -s https://raw.githubusercontent.com/simplecontainer/client/main/version)
PLATFORM=linux-amd64
curl -o client https://github.com/simplecontainer/client/releases/download/$VERSION/client-$PLATFORM
sudo mv client /usr/local/bin/smr
Explore /scripts/production/smrmgr.sh
to see how you can utilize smr client to configure and start simplecontainer nodes.
Simplecontainer can run in single and cluster mode. Cluster mode allows users to deploy Docker daemons on different hosts and connect them via simplecontainer. An overlay network is created using flannel to enable inter-host communication.
Simplecontainer uses RAFT protocol to enable distributed state using the Badger key-value store. Etcd embedded is also started in single mode and exposed to localhost only without credentials. Flannel uses only Etcd as the state store for the network configuration.
Control-plane and RAFT communication is secured using mTLS so data is encrypted even over non-secure underlying networks.
Ports exposed:
0.0.0.0:1443->1443/tcp
(Simplecontainer control plane)0.0.0.0:9212->9212/tcp
(RAFT protocol control plane sharing state):::1443->1443/tcp
(Simplecontainer control plane ipv6)127.0.0.1:2379->2379/tcp
(Etcd exposed only on the localhost)
The simplecontainer can also be run as a single node without clustering enabled and additional overhead if it is not mandatory to have multiple nodes, high availability, and disaster recovery in place for the application.
The control plane can be exposed:
- On the localhost only to prevent control plane communication from being done outside localhost
- On the 0.0.0.0:1443 which means all interfaces that include all endpoints localhost or from another network.
Exposing the control plane to the 0.0.0.0:1443
and smr.example.com
will be only valid domain for the certificate authentication (Change domain to your domain):
smrmgr start -a smr-agent-1 -d smr.example.com
# Copy the content of the export
smr context export <<< https://smr.example.com:1443
# Copy the decryption key
cat $HOME/smr/smr/contexts/$(smr context).key
On the external machine run:
smr context import {{ PASTE CONTEXT }} <<< {{ PASTE KEY }}
smr ps
Exposing the control plane only to the localhost:
smrmgr start -a smr-agent-1 -e localhost:1443
Now the contorl plane is accesible from the localhost.
smr ps
NODE GROUP NAME DOCKER NAME IMAGE IP PORTS DEPS ENGINE STATE SMR STATE
Important
The smrmgr script must be run on the host directly.
This scenario assumes there are two nodes(virtual machines) connected over a non-secure internet connection.
Node 1
:node1.simplecontainer.com
->Points to Node 1 IP address
Node 2
:node2.simplecontainer.com
->Points to Node 2 IP address
Node 1 Requirements:
- smgrmgr already installed.
- Docker daemon running on the Node 1
smrmgr start -a smr-agent-1 -d smr1.example.com
# Copy the content of the export
smrmgr export https://node1.example.com:1443
# Copy the decryption key
cat $HOME/smr/smr/contexts/$(smr context).key
Node 2 (And any other nodes joining cluster) Requirements:
- The smgrmgr already installed
- The docker daemon running on the Node 2
smrmgr import {{ PASTE CONTEXT }} <<< {{ PASTE KEY }}
smrmgr start -a smr-agent-2 -d smr2.example.com -j smr1.example.com:1443
Afterward, the cluster is started. Flannel will start and the agent will create a docker network named cluster.
To connect containers with cluster network in the container definition specify that you want the container to connect to the cluster network.
The simplecontainer introduces objects which can be defined as YAML definition and sent to the simplecontainer manager to produce containers on the engine via reconciliation:
- Containers
- Configuration
- Resource
- Gitops
- CertKey
- HttpAuth
These objects let you deploy and configure containers on local/remote Docker daemon.
It is possible to keep definition YAML files in the repository and let the simplecontainer apply it from the repository - a.k.a GitOps.
smr apply https://raw.githubusercontent.com/simplecontainer/examples/refs/heads/main/tests/gitops-apps/definitions/gitops-plain.yaml
Applying this definition will create GitOps object on the simplecontainer.
smr ps gitops
RESOURCE REPOSITORY REVISION SYNCED AUTO STATE STATUS
gitops/examples/plain-manual https://github.com/simplecontainer/examples (2fbe408) main Never synced false Drifted drifted
Since auto sync is disabled - sync must be triggered by the user.
smr sync gitops/examples/plain-manual
smr ps
NODE RESOURCE PORTS DEPS ENGINE STATE SMR STATE
smr-agent-2 containers/example/example-busybox-1 - - running (docker) running (29m24s)
smr-agent-2 containers/example/example-busybox-2 - - running (docker) running (29m25s)
In this example, auto sync is disabled and needs to be triggered manually. When triggered the reconciler will apply
all the definitions in the /tests/minimal
pack from the https://github.com/simplecontainer/examples
repository.
To see more info about the Gitops object:
smr get gitops/examples/plain-manual
Output:
{
"kind": "gitops",
"prefix": "simplecontainer.io/v1",
"meta": {
"group": "examples",
"name": "plain-manual",
"runtime": {
"owner": {
"Kind": "",
"Group": "",
"Name": ""
},
"node": 2,
"nodeName": "smr-agent-2"
}
},
"spec": {
"repoURL": "https://github.com/simplecontainer/examples",
"revision": "main",
"directoryPath": "/tests/minimal",
"poolingInterval": "",
"automaticSync": false,
"API": "",
"context": "",
"certKeyRef": {
"Prefix": "",
"Group": "",
"Name": ""
},
"httpAuthRef": {
"Prefix": "",
"Group": "",
"Name": ""
}
},
"state": {
"Gitops": {
"Synced": false,
"Drifted": false,
"Missing": false,
"NotOwner": false,
"Error": false,
"State": "",
"Messages": null,
"Commit": [
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0
],
"Changes": null,
"LastSync": "0001-01-01T00:00:00Z"
},
"Options": []
}
}
This scenario assumes two nodes of simplecontainer running.
Run the next commands:
git clone https://github.com/simplecontainer/examples
smr apply examples/tests/dependency-readiness-simple
object applied: resource
object applied: configuration
object applied: configuration
object applied: secret
object applied: containers
object applied: resource
object applied: containers
object applied: resource
object applied: containers
This example demonstrates:
- secrets
- configuration
- resource
- container
- readiness check
- dependency
After running commands above, check the smr ps
:
smr ps
NODE RESOURCE PORTS DEPS ENGINE STATE SMR STATE
smr-agent-2 containers/example/example-busybox-1 - - running (docker) running (32m55s)
smr-agent-2 containers/example/example-busybox-2 - - running (docker) running (32m55s)
smr-agent-1 containers/mysql/mysql-mysql-1 3306 - running (docker) readiness_check (1s)
smr-agent-2 containers/nginx/nginx-nginx-1 80, 443 mysql.* - depends_checking (1s)
smr-agent-2 containers/nginx/nginx-nginx-2 80, 443 mysql.* - depends_checking (1s)
smr-agent-2 containers/traefik/traefik-traefik-1 80:80, 443:443, 8888:8080 mysql.* - depends_checking (1s)
Containers from group mysql will start first.
Traefik and nginx will wait till mysql is ready because of the dependency definition and ordering.
- https://simplecontainer.io
- https://docs.simplecontainer.io
- https://blog.simplecontainer.io
- https://quay.io/repository/simplecontainer/smr
- https://github.com/simplecontainer/smr
- https://github.com/simplecontainer/client
- https://github.com/simplecontainer/examples
This project is licensed under the GNU General Public License v3.0. See more in LICENSE file.