Operations | Monitoring | ITSM | DevOps | Cloud

Blog

Delivering scalable DevOps practices with Docker in Bamboo 6.4

How many times have you had to work through local environment issues when running code only to have it fail as soon as it tests start to run? With Bamboo’s Docker Runner, those problems are a thing of the past. Now, create and isolate your end-to-end build processes inside Docker containers with full control to install build dependencies or manage resource usage.

Four Reasons Your Daycare Needs a Status Page

A snow delay can throw a wrench into your typical workday at the daycare center — especially if you’re fielding emails and phone calls from concerned parents. When you start receiving these emails, phone calls or texts from parents asking whether to pack their kids’ lunches, you may have to answer each of message in an emergency. This can snowball into calls or emails asking for more information about the snow delay.

An Introduction to Java's ThreadLocal Storage

As its name suggests, a single instance of ThreadLocal can store different values for each thread independently. Therefore, the value stored in a ThreadLocal instance is specific (local) to the current running thread. Any other code logic running on the same thread will see the same value, but not the values set on the same instance by other threads. There are exceptions, though, like InhertiableThreadLocal, which inherits parent threads’ values by default.