A small container orchestrator like docker-compose
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.
- Mount volume.
- Port forwarging.
- Protecting from pulling vulnerable image.
- Multi service deployement.
- API.
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 |
For starting container
dckrnes runFor stopping the container
dckrnes stopMore 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.