Inspired by tools like Grafana that I just discovered, what other cool open source tooling do you use?

  • @worldofgeese
    link
    21 year ago

    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?