To push container images to ghcr, you need peronal access token (PAT) - see how to create PAT
- Get PAT (personal access token)
Personal Settings > Developer settings > Personal access tokens
| #!/usr/bin/bash | |
| if [ -z $1 ]; then | |
| echo "Container name is empty" | |
| exit -1 | |
| fi | |
| if [ -z "$2" ]; then | |
| echo "Message is empty" | |
| exit -1 |
| swap_space: 2G |
| image: docker:19.03.12 | |
| # services: | |
| # - docker:19.03.12-dind | |
| variables: | |
| # DOCKER_DRIVER: overlay2 | |
| # DOCKER_TLS_CERTDIR: "" | |
| PROJECT_NAME: my-project |
To push container images to ghcr, you need peronal access token (PAT) - see how to create PAT
Personal Settings > Developer settings > Personal access tokens
| #!/bin/bash | |
| set -o errexit | |
| clear | |
| printf "\n*** This script will download a cloud image and create a Proxmox VM template from it. ***\n\n" | |
| ### HOW TO USE | |
| ### Pre-req: | |
| ### - run on a Proxmox 6 server | |
| ### - a dhcp server should be active on vmbr0 |
| #!/bin/bash | |
| set -o errexit | |
| clear | |
| printf "\n*** This script will download a cloud image and create a Proxmox VM template from it. ***\n\n" | |
| ### HOW TO USE | |
| ### Pre-req: | |
| ### - run on a Proxmox 6 server | |
| ### - a dhcp server should be active on vmbr1 |
| SHELL=/bin/bash | |
| # to see all colors, run | |
| # bash -c 'for c in {0..255}; do tput setaf $c; tput setaf $c | cat -v; echo =$c; done' | |
| # the first 15 entries are the 8-bit colors | |
| # define standard colors | |
| ifneq (,$(findstring xterm,${TERM})) | |
| BLACK := $(shell tput -Txterm setaf 0) | |
| RED := $(shell tput -Txterm setaf 1) |
| location /blog/ { | |
| #auth_basic "Restricted"; | |
| #auth_basic_user_file /etc/nginx/.htpasswd; | |
| proxy_pass https://test-blog.bitstarz.com/; | |
| proxy_set_header X-Forwarded-Host $host; | |
| proxy_set_header X-Forwarded-Proto $scheme; | |
| } |
| version: '2' | |
| services: | |
| roach-ui: | |
| image: cockroachdb/cockroach:beta-20161215 | |
| command: start --insecure | |
| ports: | |
| - 8080:8080 | |
| networks: | |
| - roachnet |