I hereby claim:
- I am swrogers on github.
 - I am swrogers (https://keybase.io/swrogers) on keybase.
 - I have a public key ASBNvKWqv-l2ulWRdL05Wohy4TMKsuaIhAo7JrU5OismsQo
 
To claim this, I am signing this object:
| SPC s c remove highlight | |
| **** Files manipulations key bindings | |
| Files manipulation commands (start with ~f~): | |
| | Key Binding | Description | | |
| |-------------+----------------------------------------------------------------| | |
| | ~SPC f c~ | copy current file to a different location | | |
| | ~SPC f C d~ | convert file from unix to dos encoding | | |
| | ~SPC f C u~ | convert file from dos to unix encoding | | 
I hereby claim:
To claim this, I am signing this object:
| version: '3' | |
| services: | |
| reverse-proxy: | |
| image: traefik:v2.2 | |
| command: | |
| - "--api.insecure=true" | |
| - "--providers.docker" | |
| - "--providers.docker.exposedbydefault=false" | |
| - "--entrypoints.web.address=:80" | 
This is how I was able to get Gitlab CE Docker to run behind a Caddy reverse proxy, created from Portainer stack.
This has taken quite a lot of searching, so I figured that I'd write it up in a location that I could easily refer to it in the future.
There are a handful of items that are initially needed here:
These resources (articles, books, and videos) are useful when you're starting to learn the language, or when you're learning a specific part of the language. This an opinionated list, no doubt. I've compiled this list from writing and teaching Clojure over the last 10 years.
| ;; M-x insert-timestamp-default (またはM-x its)で Wed Feb 17 22:18:46 2021 | |
| ;; M-x insert-timestamp-htmlcomment (またはM-x itsh)で <!-- 2021-02-17 22:18:52 +09:00 --> (と改行) | |
| ;; M-x insert-timestamp-unixtime (またはM-x itsu)で 1613567937 | |
| ;; M-x insert-timestamp-iso (またはM-x itsi)で 2021-02-17T22:19:01+09:00 | |
| (defun insert-timestamp-default () | |
| "Insert the current timestamp" | |
| (interactive) | |
| (insert (current-time-string))) | |
| (defalias 'its 'insert-timestamp-default) |