Search results for query: docker

  1. M

    An introduction to OCI Containers on FreeBSD

    I noticed that on many docker images out there. Example podman run -it --os=linux --rm docker.io/leesonaa/immich results in s6-overlay-suexec: fatal: can only run as pid 1 Is there anything we can do about? That would be aweseome and a real gamechanger for Docker on FreeBSD
  2. gotnull

    bhyve Setting up bhyve

    ...server since 13.something (I don't remember exactly) and since it's just flawless. It runs NetBSD OpenBSD and FreeBSD like a charm, few linux distro, one of them even runs docker without any particular issue. So far so good, but I must admit templates in their github wiki helped me a lot though.
  3. J

    New Tools for Creating Portable and Customizable Distributions of OpenEMR for FreeBSD using QEMU on MacOS

    ...without needing to install PHP, Composer, npm, or any runtime dependencies. **FreeBSD-specific approach:** Unlike the Linux builds which use Docker, the FreeBSD build: - Compiles PHP 8.5 directly from source with 35+ extensions - Bundles required .so files (libiconv, libxml2, libssl...
  4. wolffnx

    Why the BSD family is rejected by the industry? (besides the all big ones that everybody knows)

    that is the word I dont found "popular" but here whe got jails...but go to tell someone who use Docker,Kubernets and all that
  5. Espionage724

    Why the BSD family is rejected by the industry? (besides the all big ones that everybody knows)

    I blame Docker and containers :p (new training probably starts at that and AWS/cloud VMs), and if it works good-enough, why look into something else less-popular?
  6. J

    What is your setup for "develop on macOS, deploy on FreeBSD?"

    I recently started exploring FreeBSD for my servers (having run Ubuntu Linux for 10 years). On my MacBook client, I just install the required packages (Django/Gunicorn/PostgreSQL) with Homebrew and some handmade LaunchAgents, and use a small Linux (probably FreeBSD in the future) host as a...
  7. solomon

    Other Deploying a Go service

    ...linux version locally and in the VPS you don't need anything else, even with CGO enabled. This is usually faster to build a binary than using Docker. There is podman support with using the linux binary compatiblity. Podman is a drop in replacement for Docker for containerization. It's...
  8. W

    bhyve bhyve/virtio-9p - symlinks are broken on guest side

    ...on the host it works as expected on the guest. Is there anything more I can do or will I have to work around this? Not too much of a big deal, but it would be nice to have this working. (My intended use-case is to run Docker on the guest with /var/lib/docker stored on a ZFS dataset on the host)
  9. Andriy

    An introduction to OCI Containers on FreeBSD

    I noticed that many docker containers use s6-overlay thing which provides s6 as init replacement (and more). Unfortunately, the silly thing insists on running as PID 1. As I understand, Linux containers can / do have separate PID spaces while on FreeBSD we do not have that, jails share the...
  10. J

    What is your setup for "develop on macOS, deploy on FreeBSD?"

    Yeah the parts behind the HTML, specifically making sure the different programming language runtimes (e.g., Java, Ruby, whatever), servers, databases, etc. work the same during development as during a deploy. If you're running (just as an example) Ruby on your Macbook locally and then the same...
  11. X

    general/other Linux docker & docker compose in 2025

    ...always depends on the environment provided by OS - think of libraries and assistant services (like Redis, for example), as a bare example. Docker address the biggest "it works on my computer" thing, letting people in charge of infrastructure run the same config and code as developer does on...
  12. Espionage724

    general/other Linux docker & docker compose in 2025

    ...from breaking for devs with testing). I guess it varies depending on what's being developed, but devs shouldn't need to be involved with Docker or the OS? It should just-work (I'm thinking something like a dev opening a laptop and firing up an IDE like IntelliJ to dev for Android: as long as...
  13. X

    general/other Linux docker & docker compose in 2025

    Zare, I know and I'm with you. I just wish I can run docker compose up -d on my FreeBSD servers.
  14. F

    FreeBSD Officially Supported in OCI Runtime Specification v1.3

    ...recognition. 2024: Dave Cottlehuber led the work to include FreeBSD official OCI images, which first appeared in 14.2. They are available on Docker Hub and GitHub Container Registry. 2025: Doug Rabson led the work to add FreeBSD as a platform to the OCI runtime specification, it is available...
  15. rbranco

    An introduction to OCI Containers on FreeBSD

    You can run Linux containers, yes. Not any. Just the ones that doesn't rely on exotic Linuxisms that aren't yet present in the Linuxulator. And it's Jails all the way down.
  16. X

    An introduction to OCI Containers on FreeBSD

    Does it mean that it is possible now to run any Linux docker container on FreeBSD without a bhyve? Are there any downsides? I have never used docker containers, but I see that many projects tend to provide docker container with missing or old documentation how to do without docker. So it may be...
  17. Espionage724

    What is your setup for "develop on macOS, deploy on FreeBSD?"

    ...some config; Linux is similar, but Windows I download zips from upstream instead of a package manager (all manual/no convenience like XAMPP or Docker). Same PHP extensions though every OS and similar nginx.conf and PHP settings; I have my wiki up and a secure webserver that can process PHP in...
  18. cracauer@

    What is your setup for "develop on macOS, deploy on FreeBSD?"

    Deploying what things? Database involved? If yes, how does the database hold up in Docker? I typically ssh directly into the target platform and develop there. Regardless of what my terminal is.
  19. J

    What is your setup for "develop on macOS, deploy on FreeBSD?"

    ...life easier) and would like to run my server environment locally for development purposes. If I deploy on Debian the usual answer is "use Docker/Podman/etc." I know macOS is pretty popular with FreeBSD folks so I'm curious what setup you're using to emulate a FreeBSD server locally? Getting...
  20. M

    An introduction to OCI Containers on FreeBSD

    ...freebsd-version 14.3-RELEASE That was easy! Let’s test a Linux container: $ doas podman run --rm --os=linux docker.io/alpine cat /etc/os-release | head -1 NAME="Alpine Linux" Again, that was really easy. You can find FreeBSD OCI images on GitHub and Docker Hub. But we imagine many...
Back
Top