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
| # utente non root | |
| sudo yum install runc git | |
| curl -sLSf https://github.com/containerd/containerd/releases/download/v1.3.2/containerd-1.3.2.linux-amd64.tar.gz > /tmp/containerd.tar.gz | |
| sudo tar -xvf /tmp/containerd.tar.gz -C /usr/local/bin/ --strip-components=1 | |
| curl -SLfs https://raw.githubusercontent.com/containerd/containerd/v1.3.2/containerd.service | sudo tee /etc/systemd/system/containerd.service | |
| sudo systemctl daemon-reload | |
| sudo systemctl start containerd | |
| sudo systemctl enable containerd | |
| sudo /sbin/sysctl -w net.ipv4.conf.all.forwarding=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
| @mixin margin-gutter($column, $gutter, $target, $row: true, $breakpoint: false) { | |
| width: 100% + $gutter; | |
| @if $breakpoint == false { | |
| position: relative; | |
| @if $row == false { | |
| @include legacy-pie-clearfix(); | |
| } | |
| } |
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
| @mixin smart-icon($pseudo: before, $width: 10px, $height: 10px, $y-pos: 0, $x-pos: 0, $y-padding: null, $x-padding: null, $centered: false) { | |
| position: relative; | |
| @if $y-padding != null { | |
| padding-top: $y-padding; | |
| } | |
| @if $x-padding != null { | |
| @if $pseudo == before { | |
| padding-left: $x-padding; |