head -10 ../private/imac.yantz5.key.pem
-----BEGIN RSA PRIVATE KEY-----
Proc-Type: 4,ENCRYPTED
DEK-Info: AES-256-CBC,25AD524E722FC26BF558B1717CDEE602
+9WhhvN5yu9LJD++PSFVv9XGpa0qVl+PTjvRQVdf/h7kJEULcAkGtJ6DTpD179k+
This file contains 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
# Make sure user has read permission on docker sock | |
# sudo chmod o+r /var/run/docker.sock | |
# | |
version: "3.3" | |
services: | |
portainer: | |
image: portainer/portainer | |
ports: | |
- 8443:9000 | |
command: |
This file contains 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
```bash | |
mkdir ~/bin | |
cat >> ~/bin/docker-java << "BINGOBANGO" | |
#! /bin/env bash | |
if [ "$PWD" = "/" ]; then | |
echo " | |
ERROR: | |
docker-java cannot be executed from $PWD |
This command sets the pki.dns label = to uc-<IP ADDRESS>.vcloud.w.com
, where <IP ADDRESS>
is the ip address with octets seperated by dashes -
instead of period .
docker node ls --format '{{.ID}}' | \
xargs docker node inspect $1 \
--format 'docker node update --label-add pki.dns=uc-{{join (split .Status.Addr ".") "-" }}.vcloud.w.com {{.ID}}' | sh