techdevelopmentMay 8, 2018, 10:18 PMDocker Multistage Build Use CasesBy utilizing Docker's Multistage Build feature, you can write Dockerfiles concisely. This feature enables you to reduce image size, exclude programs used only in development environments, and make refactoring easier. Specifically, you can create images of several MB in size with Go language programs, and easily separate development and release environments. Additionally, the dependencies between each stage become clear, and the maintainability of Dockerfiles improves.
techmacMay 7, 2018, 9:55 PMMac Setup MemoThis article introduces personal settings and application installation methods for Mac setup, covering system settings, terminal and Finder customization, and installation of 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.