Follow guidelines from GitHub: https://docs.github.com/en/authentication/connecting-to-github-with-ssh/generating-a-new-ssh-key-and-adding-it-to-the-ssh-agent
- Add ssh config
# Default GitHub
Host github.com
HostName github.com
User git
| name: traefik | |
| services: | |
| httpbin-subpath: | |
| depends_on: | |
| - httpbin-subdomain | |
| image: busybox | |
| command: ping -i 1 localhost | |
| labels: | |
| - traefik.http.routers.httpbin-subpath.rule=Host(`traefik.local`) && PathPrefix(`/httpbin`) | |
| - traefik.http.routers.httpbin-subpath.service=httpbin-subpath-service |
Follow guidelines from GitHub: https://docs.github.com/en/authentication/connecting-to-github-with-ssh/generating-a-new-ssh-key-and-adding-it-to-the-ssh-agent
# Default GitHub
Host github.com
HostName github.com
User git
| local MICROPHONE_DEVICE_NAME = "MacBook Pro Microphone" | |
| function detectAirPods(event) | |
| if event ~= "dOut" and event ~= "dIn " then | |
| return | |
| end | |
| local device_name = hs.audiodevice.current().name | |
| if device_name:find("AirPods") == nil then | |
| return |
| FROM alpine | |
| LABEL authors="Trung-DV" | |
| WORKDIR /pr | |
| RUN apk add --no-cache git github-cli | |
| COPY ./entrypoint.sh entrypoint.sh | |
| ENTRYPOINT ["./entrypoint.sh"] |