A small container orchestrator without k8s cluster
Caution
Do not use dockernes in production, the software is currently in development and is not yet ready
- Detecting "service-dockrnes.toml" (like docker-compose.yml).
- Supporting environement variables.
- Managing your container.
- Life cycle.
- Port forwarging.
- Proecting from pulling vulnerable image.
- Multi service deployement.
- API.
Create a file named service-dckrnes.toml
[service]
name = "PostgresSQL"
image = "postgres:latest"
replica = 1
environement = [
"POSTGRES_PASSWORD=password",
"POSTGRES_USER=postgres"
]
| Field | Description |
|---|---|
name |
Name of the service/container |
image |
Docker image to use |
replica |
Number of container instances to run |
envrionement |
Environement variable for your service |
dckrnes runMore commands and options will be documented as features are implemented.
Contributions, issues, and feature requests are welcome. Feel free to check the issues page if you want to contribute.
No license has been specified yet for this project.