OpenBSD + liquidsoap

Get the sources: https://github.com/savonet/liquidsoap/releases and untar them. Add some packages: # pkg_add ocaml # pkg_add ocaml-graphics # pkg_add fdk-aac # pkg_add faad # pkg_add libao # pkg_add libmad # pkg_add taglib # pkg_add ocaml-pcre # pkg_add ocaml-camlp4 # pkg_add libogg # pkg_add libvorbis # pkg_add flac # pkg_add lame # pkg_add gmake # pkg_add ffmpeg […]

DOCKER| ENTRYPOINT vs. CMD

O.K…. Lets start. ;) Variables passed as arguments to the container using -e will be part of containers environment. ENTRYPOINT script will be executed using this environment. Any CMD will be passed as an argument to the running ENTRYPOINT script. If there is no ENTRYPOINT defined, CMD will be executed instead. In other words: ENTRYPOINT […]