build-me-a-container banner

build-me-a-container

5 devlogs
6h 23m 25s

This tool allows you to create a dockerfile from an interactive prompt

This project uses AI

Very little AI was used, only for slight adjustments in build scripts and small debugging.

Demo Repository

Loading README...

brny

Last devlog before ship!

So, what happened?
I mainly implemented small features for the packages and small bug fixes for the CMakeLists and the packages

Release v1.0.0 has been released!

Check it out on github!

Attachment
0
brny

Small little devlog, i just created documentation and man pages for my application.

Attachment
0
brny

Third devlog!!!

A LOT of new features have been added like.

  • Docker compose support
  • Arguments
    And its also the first pre release on github!
    I packaged it for debian and rpm based distros so feel free to try it.
Attachment
0
brny

New devlog, yay!

A lot of features have been implemented since the last devlog.
It can create a dockerfile with these commands:

  • FROM
  • WORKDIR
  • COPY
  • EXPOSE
  • RUN
  • ENTRYPOINT
    I have also switched the method on how the dockerfile is created. It was created by saving all the values into strings and then writing them one by one. The problem with that was that there couldn’t be multiple ports exposed. That is why i implemented to use vector arrays instead of strings. I also added support for podman because it shares a lot of similarities with docker.
Attachment
0
brny

First devlog, yay!
So what is this program you may ask?
This c++ program aims to eliminate the pain behind writing dockerfiles by hand by creating an interactive CLI, explaining what each step does.
So far this program does:

  • Creates a dockerfile based on the image name given
  • Builds the dockerfile
Attachment
0