Docker container: Gitea
Docker container on DockerHub
https://hub.docker.com/r/gitea/gitea
Docker installation
https://docs.gitea.io/en-us/install-with-docker/
Docker container on DockerHub
https://hub.docker.com/r/gitea/gitea
Docker installation
https://docs.gitea.io/en-us/install-with-docker/
Ubuntu
docker run -it ubuntu:18.04
Import MySql / Mariadb dump into container
cat gogs.sql | docker exec -i gitea_db_1 mysql --host=localhost --user=gitea --password=gitea gitea
Apache
docker run -d --name apache -p 8080:80 httpd:latest
Nginx
https://hub.docker.com/_/nginx
docker run --name nginx -v /tmp:/usr/share/nginx/html:ro -d -p 8080:80 nginx
GitLab runner
docker run -d --name gitlab-runner --restart always \ -v /srv/gitlab-runner/config:/etc/gitlab-runner \ -v /var/run/docker.sock:/var/run/docker.sock \ gitlab/gitlab-runner:latest docker run --rm -t -i -v /srv/gitlab-runner/config:/etc/gitlab-runner gitlab/gitlab-runner register \ ...
CONTAINER=haproxy # Create container lxc launch ubuntu:18.04 ${CONTAINER} sleep 10 # Deploy SSH key lxc file push --uid 0 --gid 0 --mode 600 ~/.ssh/id_rsa.pub ${CONTAINER}/root/.ssh/authorized_keys # Configure http(s) proxy inside of container (if set on host) [ -z ${http_proxy} ] || echo "export http_proxy=$http_proxy" | lxc shell ${CONTAINER} -- tee -a /etc/environment [ -z ${https_proxy} ] || echo "export https_proxy=$https_proxy" | lxc shell ${CONTAINER} -- tee -a /etc/environment # Update APT repository lxc exec ${CONTAINER} -- bash -c ". /etc/environment && apt update" # Optional: install applications lxc exec ${CONTAINER} -- bash -c ". /etc/environment && apt install -y haproxy"
Create required directories
mkdir -p /etc/docker/nginx/{conf.d,html}
Configure nginx as webserver
cat < /etc/docker/nginx/conf.d/default.conf
server {
listen 80;
server_name _;
root /usr/share/nginx/html;
index index.html index.htm;
}
EOF
Configure nginx as proxy
cat < /etc/docker/nginx/conf.d/proxy.conf
server {
listen 80;
server_name foo.example.com;
location / {
proxy_pass http://localhost:8080/;
}
}
EOF
Create container
kubectl Cheat Sheet
https://kubernetes.io/docs/reference/kubectl/cheatsheet/
Dump Kubernetes Objects
kubectl get componentstatuses
kubectl get configmaps
kubectl get daemonsets
kubectl get deployments
kubectl get events
kubectl get endpoints
kubectl get horizontalpodautoscalers
kubectl get ingress
kubectl get jobs
kubectl get limitranges
kubectl get nodes
kubectl get namespaces
kubectl get pods
kubectl get pods --all-namespaces -o wide
kubectl get persistentvolumes
kubectl get persistentvolumeclaims
kubectl get quota
<?php
$URL="https://raw.githubusercontent.com/panticz/installit/master/install.docker.sh";
echo "wget -q --no-check-certificate $URL -O - | bash -";
echo "
"; $c = curl_init(); curl_setopt($c, CURLOPT_URL, $URL); curl_setopt($c, CURLOPT_RETURNTRANSFER, 1); echo htmlspecialchars(curl_exec($c)); curl_close($c); echo "
";
?>