Skip to content

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

27 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Dockernes

A small container orchestrator without k8s cluster

CodeFactor Grade (with branch) GitHub top language

Caution

Do not use dockernes in production, the software is currently in development and is not yet ready

Roadmap

  • 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.

Usage/Examples

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

Usage

dckrnes run

More commands and options will be documented as features are implemented.

Contributing

Contributions, issues, and feature requests are welcome. Feel free to check the issues page if you want to contribute.

License

No license has been specified yet for this project.

Authors