上一页 1 ··· 84 85 86 87 88 89 90 91 92 ··· 499 下一页
摘要: Introduction Docker volumes is the preferred method of storing container data locally. Volume support is built directly into Docker, making it an easy 阅读全文
posted @ 2023-01-27 04:35 Zhentiw 阅读(183) 评论(0) 推荐(0)
摘要: Storing data within a container image is one option for automating a container with data, but it requires a copy of the data to be in each container y 阅读全文
posted @ 2023-01-27 02:43 Zhentiw 阅读(99) 评论(0) 推荐(0)
摘要: Pull httpd image and run the container [cloud_user@ip-10-0-1-78 ~]$ docker pull httpd:2.4 [cloud_user@ip-10-0-1-78 ~]$ docker run --name webtemplate - 阅读全文
posted @ 2023-01-25 15:06 Zhentiw 阅读(29) 评论(0) 推荐(0)
摘要: Sometimes we when switch branch, might bring some modified files into the new branch to cleanup those files git clean -df https://git-scm.com/docs/git 阅读全文
posted @ 2023-01-25 04:36 Zhentiw 阅读(51) 评论(0) 推荐(0)
摘要: Pull httpd:latest image Normally you want to attach the version httpd:2.4, because everytime you run the image, we with the same version is running. b 阅读全文
posted @ 2023-01-25 04:25 Zhentiw 阅读(38) 评论(0) 推荐(0)
摘要: let context = [] function cleanup(observer) { for (const dep of observer.dependencies) { dep.delete(observer) } } function subscribe(observer, subscri 阅读全文
posted @ 2023-01-24 04:21 Zhentiw 阅读(49) 评论(0) 推荐(0)
摘要: Previously, we have problem for such code: type RGB = readonly [red: number, green: number, blue: number]; type Color = { value: RGB | string }; const 阅读全文
posted @ 2023-01-19 04:45 Zhentiw 阅读(48) 评论(0) 推荐(0)
摘要: import { test } from '@playwright/test'; test.beforeEach(async ({ page }) => { await page.goto('http://localhost:3000'); }); test('selectors', async ( 阅读全文
posted @ 2023-01-18 16:14 Zhentiw 阅读(59) 评论(0) 推荐(0)
摘要: In this lesson, we are using HTML, accessibility concepts, and ARIA attributes to improve the time scrubber feature of an audio player. The goal is to 阅读全文
posted @ 2023-01-17 16:07 Zhentiw 阅读(35) 评论(0) 推荐(0)
摘要: Consider this createClassNamesFactory function that's similar to one I built for getting Tailwind class names that could then be passed into a React c 阅读全文
posted @ 2023-01-17 15:31 Zhentiw 阅读(43) 评论(0) 推荐(0)
上一页 1 ··· 84 85 86 87 88 89 90 91 92 ··· 499 下一页