Search results for query: docker

  1. D

    general/other Linux docker & docker compose in 2025

    If you don't want to use podman or jails your best bet is to use bhyve. Install an alpine instance, install docker in it and go nuts. I quite like Alpine, its super small and snappy. However, If you do use it be sure to install dnsmasq as dns resolution can be wonky out of the box. The source...
  2. Whattteva

    What would you like to see over the next few FreeBSD versions?

    Some kind of FreeBSD-specific equivalent of Docker that is based on Jails that enables you to deploy web apps rapidly. While I understand that there are things like CBSD and AppJail, I would like more of a first-party built-in solution like the way jails is.
  3. gotnull

    general/other Linux docker & docker compose in 2025

    Okay so if I read between lines one is better but both are okay. Thank you.
  4. rbranco

    general/other Linux docker & docker compose in 2025

    ...and "podman compose". The first is a Python script with lots of dependencies and the latter is a podman subcommand that supports the docker-compose plugin written in Golang, faster and better than the Python version. And yes, by containers I mean OCI containers, the ones used by docker &...
  5. gotnull

    general/other Linux docker & docker compose in 2025

    ...github repo has lot of unsolved issue though. What I did find out podman can run a sub-command called compose which launch podman-compose or docker-compose. BTW does it matter that much if the wrapper and the original program aren't written in same language? Container as in docker/podman...
  6. R

    Object Oriented Programming really an Advantage

    Library/package installation (pip for Python, crates for Rust ...) and package deployment systems (npm, docker ...) are orthogonal to the question of procedural, object-oriented, functional, ... coding style. Except that certain languages are correlated with these systems and coding styles.
  7. R

    general/other Linux docker & docker compose in 2025

    Your question reminded me of a post that referenced this podman page. In that link search for “download images using podman”. Haven’t tried myself, but from the page description looks like you can run Linux docker containers transparently on FreeBSD. Good luck!
  8. rbranco

    general/other Linux docker & docker compose in 2025

    podman-compose is based on Python and deprecated for docker-compose, which is written in Golang: https://docs.podman.io/en/v5.3.1/markdown/podman-compose.1.html Containers in FreeBSD are jails. I haven't tried Docker on FreeBSD yet. Podman just worked for me to run Linux images.
  9. gotnull

    general/other Linux docker & docker compose in 2025

    I am not a docker guy and really not an expert, I've tried it a bit in a Linux VM months ago and that was it, didn't ditch the VM but I let it rotten since I am not much interested. But for the purpose of this thread I decided to try docker in a FreeBSD VM, so I installed sysutils/podman and...
  10. X

    general/other Linux docker & docker compose in 2025

    Would you mind to elaborate? If you meant that I shall stop using Docker and use Bastille BSD - because it's X & Y - I would consider that, but only once at least 70% of the ready to use apps for which I have no special requirements or that has been packed in Docker would migrate to whatever...
  11. X

    general/other Linux docker & docker compose in 2025

    > Just install podman and try docker-compose. If I won't find any ready to use recipe - that's what I will do for sure. > "docker image built on a linux system" Good point, thanks - I never do docker build on the server, so it's only a question of `docker run` > I'm guessing docker-compose...
  12. rbranco

    general/other Linux docker & docker compose in 2025

    With containers the kernel is shared., so any translation is done by the Linuxulator if you're running Linux images. Just install podman and try docker-compose.
  13. M

    general/other Linux docker & docker compose in 2025

    linux_enable, linux service I think are for "running prebuilt linux executables on a FreeBSD system, aka Linuxulator". Docker images should not need that, even if you have a "docker image built on a linux system". I'm guessing docker-compose is creating a docker image from a "spec", a different...
  14. X

    general/other Linux docker & docker compose in 2025

    ...some hands-on experience with that :) Or at least, some theory, like, for example: sysrc linux_enable="YES" service linux start pkg install docker docker-compose debootstrap # I'm incompatible with RedHat's stuff debootstrap jammy /compat/ubuntu # not sure if it's needed for Docker? cd...
  15. rbranco

    general/other Linux docker & docker compose in 2025

    podman supports docker-compose. Haven't tried it on FreeBSD, though.
  16. M

    general/other Linux docker & docker compose in 2025

    pkg search docker shows "docker -18.09", docker-compose, docker-machine plus a few more
  17. X

    general/other Linux docker & docker compose in 2025

    I was (and still) looking for the way to run any docker service. That is the biggest benefit of Docker - for the cases when you don't care and you just need that something to be running - it is perfect. And I have quite plenty of those things. So my perfect solution would be, if possible, to...
  18. SirDice

    general/other Linux docker & docker compose in 2025

    Instead of trying to crowbar docker services into FreeBSD, why not just install those services directly on FreeBSD? Don't know which services you need but they might run natively on FreeBSD.
  19. X

    general/other Linux docker & docker compose in 2025

    Hey, I wanted to understand what is the state of Linux dockers execution and docker's compose.yaml on FreeBSD. I've tried to read various articles and that forum thread, but I'm still not sure I understand if there is some easy way to start ready to use Linux Dockers? Ideally, by re-utilizing...
  20. T

    Introduce yourself, tell us who you are and why you chose FreeBSD

    ...and all the other benefits hypervisors brought us were available in FreeBSD all along. Now it was 2014 and everyone was talking about Docker, Kubernates, and micro services; but again, the benefits of these systems were already available in the BSD world. So after experimenting with jails...
Back
Top