Search results for query: docker

  1. Dereckson

    Docker alternatives for a Go/Kotlin developer

    Probably best to target jails if you're the solution author. You can get a behavior similar to Dockerfile by starting with a base system ZFS snapshot and a .sh script to run the commands to deploy your software on it. Also, if you're using C and Zig, you don't have a lot of dependencies to...
  2. D

    Docker alternatives for a Go/Kotlin developer

    https://wiki.freebsd.org/Docker
  3. N

    Docker alternatives for a Go/Kotlin developer

    Hello all, What are you doing to run Docker images in FreeBSD? I'm in the process from Linux to FreeBSD, the only "issue" that I found was how to run Docker images, which is required by my work. Personal projects, usually in C, Zig, are good. My Docker dependencies here are more infra-related...
  4. R

    What if Oracle hadn't bought Sun ?

    ...servers costs them $1K. They recompile their code every few hours, and probably put it into some sort of containerization system such as Docker. They have some sort of complex scheduling system, which distributes millions of tasks onto millions of servers, and tasks get restarted regularly...
  5. L

    Jellyfin fails to start in FreeBSD 13.5‑RELEASE‑p3 jail – “Bad system call”

    ...error. Without trying to abuse your goodwill, do you see any potential workarounds for this issue? I'm looking to avoid placing Jellyfin into a Docker container on Linux, but I'm having trouble finding a solution to bypass this compatibility problem. Any insights would be greatly appreciated!
  6. R

    What if Oracle hadn't bought Sun ?

    ...will work the same. Just don't copy a compiled executable from one machine to the other (unless it's Java). With packaging systems such as Docker and scheduling systems such as Kubernetes, it is relatively easy to use a clustered computer system where different CPUs have different instruction...
  7. Espionage724

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

    I only entertain bare-metal, but FreeBSD could use more compatibility with whatever Node does. Joomla CMS uses it, and some module didn't install on 14.3 (couldn't run one of my websites). bun.js also doesn't have a native FreeBSD build (can't run up-to-date 2004Scape/have to use an older build...
  8. 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...
  9. 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.
  10. 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.
  11. 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 &...
  12. 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...
  13. 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.
  14. 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!
  15. 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.
  16. 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...
  17. 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...
  18. 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...
  19. 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.
  20. 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...
Back
Top