techdevelopmentMay 8, 2018, 10:18 PMUse Cases for Docker Multistage BuildBy utilizing Docker's Multistage Build feature, you can write Dockerfiles more concisely. Using this feature allows for use cases such as reducing image size, excluding programs used only in development environments, and facilitating refactoring. Specifically, it becomes possible to create images of just a few MB for Go language programs, and it becomes easier to separate development and release environments. Additionally, the dependencies of each stage become clearer, improving the maintainability of Dockerfiles.
techmacMay 7, 2018, 9:55 PMMac Setup MemoThis article introduces personal settings and application installation methods for Mac setup. It follows detailed steps from system settings to customizing Terminal and Finder, as well as installing various applications.
techdevelopmentSep 9, 2017, 6:59 PMSetting up an HTTPS Proxy on localhost using DockerThis article explains how to set up an HTTPS proxy on localhost using Docker, allowing you to access your local application server via HTTPS. By using an SSL termination proxy within a Docker container, you can set up a fast and secure environment without polluting your local environment. Specifically, we use Nginx to set up the proxy and environment variables to set the host's IP address. The usage is simple and can be shared across Mac and Linux environments.
techmacAug 25, 2017, 9:28 PMVoice Control with Mac's Standard FeaturesThis article introduces a method to achieve voice control using Mac's standard features. You can call scripts with your voice and set your favorite invocation words. It's also convenient to run commands in the background without opening a new terminal tab. The setup process involves enabling Dictation, creating a Workflow with Automator, and calling the Workflow with Dictation Command.