ohlaph@lemmy.world to Programming@programming.dev · 1 year agoWhat open source solutions do you use or want to use?message-squaremessage-square17fedilinkarrow-up147arrow-down12file-text
arrow-up145arrow-down1message-squareWhat open source solutions do you use or want to use?ohlaph@lemmy.world to Programming@programming.dev · 1 year agomessage-square17fedilinkfile-text
Inspired by tools like Grafana that I just discovered, what other cool open source tooling do you use?
minus-squarePyro@lemmy.worldlinkfedilinkEnglisharrow-up2arrow-down1·1 year agoI really want to like Podman Compose but since the very beginning it’s been noticeably tougher to work with than Docker Compose. I get that it’s because it’s just an extra script rather than a first party tool, but still.
minus-squareworldofgeese@lemmy.worldlinkfedilinkarrow-up2·1 year agoFor something simple that just needs a bind mount like services: app: build: context: . target: base volumes: - ./debaser_studio:/opt/app-root/src/debaser_studio/debaser_studio ports: - "3000:3000" - "8000:8000" user: default I haven’t found any issues. Do you have more complex needs?
I really want to like Podman Compose but since the very beginning it’s been noticeably tougher to work with than Docker Compose. I get that it’s because it’s just an extra script rather than a first party tool, but still.
For something simple that just needs a bind mount like
services: app: build: context: . target: base volumes: - ./debaser_studio:/opt/app-root/src/debaser_studio/debaser_studio ports: - "3000:3000" - "8000:8000" user: default
I haven’t found any issues. Do you have more complex needs?