Best of Docker — May 2024
- 1
- 2
Community Picks·2y
Say Goodbye to Docker Volumes 👋
Learn how to use Docker Compose Watch to automatically synchronize local source code with code in a Docker container without using volumes. Discover different actions that can be used with the watch attribute and be aware of the caveats of using this feature.
- 3
- 4
- 5
LogRocket·2y
Building a customizable dashboard with Dashy
Learn how to create a customizable dashboard with Dashy, a free and open source self-hosted dashboard app developed with Vue and Node.js. Dashy allows users to aggregate web service links and widgets into one web page, offering features such as multi-language support, authentication, theme customization, and more. Use cases for Dashy include creating dashboards for home lab servers, managing bookmarks, and storing app and admin page URLs. The article also provides a practical guide on installing and using Dashy via Docker.
- 6
- 7
- 8
- 9
- 10
Hacker News·2y
tembo-io/pgmq: A lightweight message queue. Like AWS SQS and RSMQ but on Postgres.
PGMQ is a lightweight message queue built on Postgres. It guarantees exactly once delivery of messages within a visibility timeout and offers API parity with AWS SQS and RSMQ. It provides features like message archiving and tables can be partitioned for efficient management. You can try PGMQ for free using the Tembo docker image.
- 11
Community Picks·2y
Ultimate Guide to Dev Containers
Dev containers are isolated, lightweight environments that provide a pre-configured development environment inside your editor or IDE. They save time by eliminating the need for manual setup and ensure a clean environment every time. Some of the benefits of using dev containers include pre-configured build environments, isolated environments, reproducible builds, less setup time, and flexibility in choosing base images.
- 12
- 13
Javarevisited·2y
10 Best Udemy Courses Java and Web Developers in 2024
Discover the top 10 Udemy courses for Java and Web developers in 2024, including Java 17 Masterclass, Spring Framework 6, Docker for Java Developers, and more. Take advantage of the New Year sale on Udemy to learn new skills for just $10!
- 14
Lobsters·2ymicrosoft/go: The Microsoft build of the Go toolset
microsoft/go is a repository containing the infrastructure Microsoft uses to build Go. It produces a modified version of Go that can be used to build FIPS 140-2 compliant applications. The binaries produced are intended for general use within Microsoft. The repository follows the upstream Go Release Policy and supports each major release until there are two newer major releases.
- 15
- 16
Community Picks·2y
Easypanel
Easypanel is a next-generation server control panel that allows users to easily deploy any type of application, manage databases, and provision SSL certificates. It supports various programming languages, offers free SSL certificates, and provides an intuitive interface for managing deployments and databases.
- 17
Docker·2y
Wasm vs. Docker
Wasm and Docker are technologies that can work together to deliver consistent, efficient, and secure environments for deploying applications. Wasm is a compact binary instruction format that allows code to run at near-native speed within a sandboxed environment. Docker helps developers build, run, and share applications, including those that use Wasm. Using Docker and Wasm together provides consistent development environments, efficient deployment, security and isolation, and enhanced performance. Docker supports WebAssembly by integrating other Wasm runtimes with the Docker Engine. The future of WebAssembly and Docker looks promising, with advancements such as the new WebAssembly Component model and the release of projects like SpinKube.
- 18
Hacker News·2y
Root your Docker host in 10 seconds for fun and profit
A post discussing the vulnerability of adding users to the 'docker' group, which grants root access to the Docker daemon. It demonstrates how easy it is to exploit this vulnerability and provides a workaround solution using UID remapping.
- 19
AWS Tip·2y
Monitoring using Prometheus and Grafana on AWS
Learn how to set up monitoring using Prometheus and Grafana on AWS. Install Docker, Docker Compose, and necessary containers. Access Portainer for container management. Access Prometheus for monitoring. Add Prometheus as a datasource in Grafana. Load a dashboard in Grafana and check the graphs.
- 20
Community Picks·2y
How To Use docker exec to Run Commands in a Docker Container
Learn how to use the docker exec command to run commands and get an interactive shell in a Docker container. Find out how to start a test container, run a command inside a container, set the working directory, run a command as a different user, and pass environment variables into a container.
- 21