this post was submitted on 09 Jul 2023
16 points (94.4% liked)
Sysadmin
7664 readers
4 users here now
A community dedicated to the profession of IT Systems Administration
No generic Lemmy issue posts please! Posts about Lemmy belong in one of these communities:
!lemmy@lemmy.ml
!lemmyworld@lemmy.world
!lemmy_support@lemmy.ml
!support@lemmy.world
founded 1 year ago
MODERATORS
you are viewing a single comment's thread
view the rest of the comments
view the rest of the comments
so the dockers already exist. I want to understand how they were built (I suspect Ansible is involved, but I don't know how this would work) so I can understand how they interact with one another and then modify.
If you want to know how they’re built, look for
Dockerfile
in the code base; that’s usually the file that would create a container image whendocker build …
command is used. Perhaps you’d also see something about CI and you’d find a build server some where, too.