Skip to content

Latest commit

 

History

37 Commits

Folders and files

NameName
Last commit message
Last commit date
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Dockernes

A small container orchestrator like docker-compose

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.
  • Mount volume.
  • Port forwarging.
  • Protecting from pulling vulnerable image.
  • Multi service deployement.
  • API.

Usage/Examples

Create a file named service-dckrnes.toml

[service]
name = "PostgresSQL"
image = "postgres:latest"
environement = [
    "POSTGRES_PASSWORD=password",
    "POSTGRES_USER=postgres"
    ]
volumes = [
   "/home/physx/posgres:/app/data"
]
Field Description
name Name of the service/container
image Docker image to use
envrionement Environement variable for your service
volumes Mount volume docker in your computer

Usage

For starting container

dckrnes run

For stopping the container

dckrnes stop

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