- https://www.flowdock.com/app/rulemotion/r-resinos/threads/zv366eTa8wNZmC7IrUZB52JUwt7
- https://resinio.testlodge.com/projects/16238/runs/579754?tab=2#executed_case_23888354
- https://resinio.testlodge.com/projects/16238/suites/140935?expand_section=241935#case_2870775
- https://hub.docker.com/r/resin/resinos/tags?page=1&ordering=last_updated
- https://hub.docker.com/r/resin/resinos-staging/tags?page=1&ordering=last_updated
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Description=S3FS FUSE mount | |
| Documentation=https://github.com/s3fs-fuse/s3fs-fuse | |
| Wants=network-online.target | |
| After=network-online.target | |
| AssertPathIsDirectory=/mnt/s3fs | |
| [Service] | |
| Type=oneshot | |
| RemainAfterExit=yes | |
| ExecStart=/usr/bin/s3fs mybucket:/bucketdir /mnt/s3fs -o url=https://nyc3.digitaloceanspaces.com -o use_cache=/tmp -o allow_other -o use_path_request_style -o uid=1000 -o gid=1000 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Description=Encfs FUSE mount | |
| Documentation=https://vgough.github.io/encfs/ | |
| Wants=s3fs.service | |
| After=s3fs.service | |
| AssertPathIsDirectory=/mnt/encfs | |
| [Service] | |
| Type=simple | |
| Environment=ENCFS6_CONFIG=%h/.encfs6.xml | |
| ExecStartPre=/bin/mountpoint /mnt/s3fs |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # description: | |
| # - once per day perform backup of $HOME | |
| # - every 14th backup will be a full backup (~2 weeks) | |
| # - delete all backups older than the 4th most recent full backup (~8 weeks) | |
| # - exclude files larger than 100M | |
| # usage: | |
| # 1. install duplicity.service in ~/.config/systemd/user/ | |
| # 2. install duplicity.timer in ~/.config/systemd/user/ | |
| # 3. create ~/.duplicity and define DEST, GPG_KEY_ID, and PASSPHRASE |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| version: "3" | |
| services: | |
| duplicati: | |
| image: linuxserver/duplicati | |
| container_name: duplicati | |
| environment: | |
| PUID: ${PUID} | |
| PGID: ${PGID} | |
| TZ: ${TZ} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| --- poky/meta/recipes-kernel/linux/kernel-devsrc.bb 2020-12-01 11:02:39.510292328 -0500 | |
| +++ meta-balena-warrior/recipes-kernel/linux/kernel-devsrc.bb 2020-12-16 14:11:36.146363392 -0500 | |
| @@ -104,7 +104,9 @@ | |
| fi | |
| if [ "${ARCH}" = "arm64" ]; then | |
| - cp -a --parents arch/arm64/kernel/vdso/vdso.lds $kerneldir/build/ | |
| + if [ -f "arch/arm64/kernel/vdso/vdso.lds" ]; then | |
| + cp -a --parents arch/arm64/kernel/vdso/vdso.lds $kerneldir/build/ | |
| + fi |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #syntax=docker/dockerfile:1.2 | |
| FROM klutchell/buildroot-base:2020.11 as build | |
| # copy common config | |
| COPY common.cfg ./.config | |
| # hadolint ignore=SC2215 | |
| RUN --mount=type=cache,target=/cache,uid=1000,gid=1000,sharing=private \ | |
| make olddefconfig && make source && make |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| ARG BR_VERSION=2020.11 | |
| # hadolint ignore=DL3029 | |
| FROM --platform=$BUILDPLATFORM klutchell/buildroot-rootfs-amd64:$BR_VERSION as rootfs-amd64 | |
| # hadolint ignore=DL3029 | |
| FROM --platform=$BUILDPLATFORM klutchell/buildroot-rootfs-arm64:$BR_VERSION as rootfs-arm64 | |
| # hadolint ignore=DL3029 | |
| FROM --platform=$BUILDPLATFORM klutchell/buildroot-rootfs-arm32v7:$BR_VERSION as rootfs-armv7 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/usr/bin/env bash | |
| # only supports hub.docker.com for now | |
| registry="${1:-"https://registry.hub.docker.com"}" | |
| # limited to 100 for hub.docker.com | |
| page_size="${2:-100}" | |
| # avoid reading all pages if at least one match is found | |
| quick=1 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/usr/bin/env bash | |
| module_path="${1}" | |
| tag="${2}" | |
| tag() { | |
| if [[ $1 == v* ]] | |
| then | |
| echo "${1/v/}" | |
| else |
OlderNewer