Host: nfs-server.local.example.com
(10.0.10.1)
sudo apt install nfs-kernel-server
sudo systemctl status nfs-kernel-server
FROM alpine:3.18 AS builder | |
ARG go_crond_version | |
RUN set -ex \ | |
&& apk add --no-cache \ | |
ca-certificates \ | |
curl \ | |
&& DL_ARCH=amd64 \ | |
&& if [ "$( arch )" = "aarch64" ] ; then DL_ARCH=arm64 ; fi \ |
# See also: | |
# - https://github.com/terraform-aws-modules/terraform-aws-alb/blob/v5.10.0/examples/complete-alb/main.tf | |
variable "domain_name" { | |
default = "example.com" | |
} | |
variable "route53_zone_id" { | |
default = "Z01538412G5CUAEXAMPLE" | |
} |
.tabbed-set { | |
display: flex; | |
position: relative; | |
flex-wrap: wrap; | |
} | |
.tabbed-set .highlight { | |
background: #ddd; | |
} |
Neste tutorial será considerado o seguinte cenário para seus repositórios locais do Git:
Fulano da Silva
[email protected]
[email protected]
image: node:8 | |
stages: | |
- build | |
- test | |
- deploy | |
variables: | |
NODE_ENV: production |
# Backups | |
30 09-17 * * * root nice -n 12 /usr/local/bin/wrestic.sh backup >> /var/log/wrestic.log 2>&1 | |
40 17 * * * root nice -n 12 /usr/local/bin/wrestic.sh retention-policy >> /var/log/wrestic.log 2>&1 |
I hereby claim:
To claim this, I am signing this object:
# shell-utils: snippets avulsos para o Bash | |
PLAYGROUND="/tmp/playground" | |
ANO="$( date +'%Y' )" | |
cria_dir_esqueleto_ano() | |
{ | |
# Cria um diretório-esqueleto de ano não-bissexto (YYYY/MM/DD) |
# | |
# Docker | |
# | |
wipe_containers() | |
{ | |
[[ "$1" ]] || return 2 | |
local opts | |
[[ "$1" == "--rm" ]] && opts="-a" |