Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/binocarlos/kaispowertools
Power tools for me!
https://github.com/binocarlos/kaispowertools
Last synced: 11 days ago
JSON representation
Power tools for me!
- Host: GitHub
- URL: https://github.com/binocarlos/kaispowertools
- Owner: binocarlos
- License: mit
- Created: 2013-08-03T07:55:46.000Z (over 11 years ago)
- Default Branch: master
- Last Pushed: 2015-07-08T10:15:37.000Z (over 9 years ago)
- Last Synced: 2024-04-14T14:36:48.428Z (7 months ago)
- Language: Makefile
- Homepage:
- Size: 2.31 MB
- Stars: 0
- Watchers: 3
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
kaispowertools
==============This repo is totally for me and so I fragrantly litter my opinions throughout.
## setup
When running the docker container the `$HOME` folder is mounted as a volunme.
As a result, ssh hosts and git are configured normally on the host.
```bash
$ GIT_NAME="Kai Davenport" GIT_EMAIL="[email protected]" make gitconfig
```## docker
Build image:
```bash
$ cd kaispowertools
$ docker build -t devbox .
```Run dev container (replace mount points to customize):
```bash
$ docker run -ti --rm \
-v /home/kai/projects:/srv/projects:ro \
-v /home/kai:/root:ro \
-v /usr/bin/docker:/usr/bin/docker \
-v /var/run/docker.sock:/var/run/docker.sock \
-p 80:80 \
devbox
```## port forward ssl
You must run vagrant as root to map the SSL port into the vagrant guest.
To avoid this - run vagrant normally and then (as root from host machine):
```
$ sudo make sslbridge
```This maps 443 -> 4443 (which is port forwarded to the vagrant guest)