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
// U-Shape Dimensions | |
U_Length = 60; // Overall length of the U-section (Y-axis) | |
U_Inner_Width = 66; // Inner width of the U-section (X-axis) | |
U_Inner_Height = 25; // Inner height of the U-section (Z-axis, from base to top of clips) | |
U_Shell = 5; // Thickness of the U-section walls and base | |
// Clip Dimensions | |
Clip_Height = 2; // Vertical thickness of the clip/flange | |
Clip_Extrusion = 1.5; // Horizontal *gap between* the two inward-facing clips |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
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
docker volume create portainer_data | |
docker run -d -p 9443:9443 -p 8000:8000 --name portainer --restart=always -v /var/run/docker.sock:/var/run/docker.sock -v portainer_data:/data portainer/portainer-ce:latest |