Building a unified development environment based on Docker
title: building a unified development environment based on Dockerslug: build-development-environment-with-dockerdate: 2021-06-27 18:56:23thumbnail: ./images/cover/build-development-environment-with-docker.pngcategories:
Codingtags:Dockerdevelopment environment Docker-Compose
preface
Most people may have encountered such a problem. After the ...
Added by SJR_34 on Mon, 03 Jan 2022 17:34:24 +0200
Docker data persistence
Docker data persistence
After the container is deleted, the data inside will also be deleted. The preservation and reuse of data are the most basic requirements, that is, data persistence. When writing Dockerfile, you can use the VOLUME command to specify data persistence
The VOLUME command sets persistence
When you know that the data in th ...
Added by josephferris on Sun, 28 Nov 2021 11:50:45 +0200
Dockerfile notes ARG and ENV
ARG and ENV
How to use?
We have a dockerfile like this
FROM ubuntu:latest
RUN apt-get update && \
apt-get install -y wget && \
wget https://github.com/ipinfo/cli/releases/download/ipinfo-2.0.1/ipinfo_2.0.1_linux_amd64.tar.gz && \
tar zxf ipinfo_2.0.1_linux_amd64.tar.gz && \
mv ipinfo_2.0.1_linux_ ...
Added by CowbellMaster on Sun, 28 Nov 2021 05:16:55 +0200
Repair SSL Certificate Problem, how to locate it and the handling strategy of common problems
During the development process, you may often encounter some https certificate related errors when using curl to request or git to clone the remote warehouse. We have sorted out some common errors and the summary of solutions to keep them updated. You are also welcome to provide other better solutions in your comments.
Knowledge supplement: wha ...
Added by calumstevens on Sat, 30 Oct 2021 15:12:42 +0300