Fedora 33 install Docker

Docker and Fedora 33 With the release of Fedora 33, Docker is not supported by Fedora 33 officially. This article will help you install Docker on Fedora 33. Remove old version sudo dnf remove docker-* sudo dnf config-manager --disable docker-* Enable old CGroups Docker still not support CgroupsV2. sudo grubby --update-kernel=ALL --args="systemd.unified_cgroup_hierarchy=0" Set up firewall sudo firewall-cmd --permanent --zone=trusted --add-interface=docker0 sudo firewall-cmd --permanent --zone=FedoraWorkstation --add-masquerade Install Moby Moby is the open-source version of Docker....

October 28, 2020 · 1 min · Andy

Go development with VSCode and vim

Gofmt Go takes a strong stance on code formatting. The gofmt tool rewrites code into the standard format. gofmt filenames Golint Linter is a tool that analyzes source code to flag programming errors, bugs, stylistic errors, and suspicious constructs. Using Linter provides many benefits. Find bugs Speed up code review Manage code quality go get -u golang.org/x/lint/golint golint filenames VSCode setup Install the Go extension maintained by Go Team at Google(previously maintained by Microsoft)....

November 18, 2019 · 2 min · Andy

Hello World

Hello world fmt.Println("Hello, world")

1 min · Andy