How to access IBM Cloud Object Storage, COS, using s3fs.
- CentOS:
| #!/bin/sh | |
| pacman -S snapd docker git code | |
| # enable docker as a service | |
| sudo systemctl enable docker | |
| sudo systemctl status docker | |
| # add me to the docker group | |
| sudo usermod -aG docker $USER |
How to access IBM Cloud Object Storage, COS, using s3fs.
| local function copy_table(obj, seen) | |
| if type(obj) ~= 'table' then | |
| return obj | |
| end | |
| if seen and seen[obj] then | |
| return seen[obj] | |
| end |