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
FROM sensson/magento2 | |
COPY src/cron /etc/cron.d/magento2 | |
COPY src/ /var/www/html/ |
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
#! /usr/bin/env bash | |
# This script will install the required software for software development and also software for general use. | |
if [[ $EUID -ne 0 ]]; then | |
echo "This script must be run as root!"; | |
exit 1 | |
else | |
# Install ZSH | |
sudo apt install -y zsh; |
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
#!/bin/sh | |
alias dm='docker-machine' | |
alias dmx='docker-machine ssh' | |
alias dk='docker' | |
alias dki='docker images' | |
alias dks='docker service' | |
alias dkrm='docker rm' | |
alias dkl='docker logs' | |
alias dklf='docker logs -f' |
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
ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQDxtjEsEv+TBghd5yLDlY8DNJIOO7bsPFpXnX+jmHp9gS9nBYnxWjDeDCJoOYYGQk85osljlKQA3s0pEiwN6ke+AibY90z/XEU6LgCVBCFa4f4s7cwgnPhE8vLHDQcoPPdZrQs+a86yceHaRUsRYZ1XQZ5IxiZcbIqy2/+3u/sOyVWmjHUr/sQdOjqwq6o7sxLlH3NGNXuRQPrAtpmdxr0BNY5qwMLfP7FhQs6IbnzgciQISTKt5AeiNY9IH4spIedjZ/nQY1R62JBTcyNnDnpvNqC5rhDuX/X1zvZmlgDAbw1T1tYlVDcChr3WE9qJFXq6O67FbeokxKUoUzSUxJ77 [email protected] |
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
source /home/$(whoami)/antigen.zsh | |
# Load the oh-my-zsh's library. | |
antigen use oh-my-zsh | |
# Bundles from the default repo (robbyrussell's oh-my-zsh). | |
antigen bundle git | |
antigen bundle command-not-found | |
# Essential ZSH plugins |
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
{ | |
"basics": { | |
"name": "Branko Kovacevic", | |
"image": "", | |
"email": "[email protected]", | |
"phone": "+381 64 123 4567", | |
"location": { | |
"city": "Novi Sad", | |
"countryCode": "RS" | |
}, |