curl -fsSL https://get.docker.com -o get-docker.sh
sudo sh ./get-docker.sh
Falls kein curl installiert: apt install curl
services: | |
evcc: | |
command: | |
- evcc | |
container_name: evcc | |
image: evcc/evcc:latest | |
ports: | |
- 7070:7070/tcp | |
- 8887:8887/tcp | |
- 7090:7090/udp |
# The UID and GID of the user used to run paperless in the container. Set this | |
# to your UID and GID on the host so that you have write access to the | |
# consumption directory. | |
USERMAP_UID=1028 | |
USERMAP_GID=100 | |
# Additional languages to install for text recognition, separated by a | |
# whitespace. Note that this is | |
# different from PAPERLESS_OCR_LANGUAGE (default=eng), which defines the |
NC_VERSION=28 | |
NC_HOST=cloud.example.org | |
RC_VERSION=6.5.0 | |
RC_HOST=chat.example.org | |
MONGO_VERSION=7.0 | |
MYSQL_ROOT_PASSWORD=verySecret | |
MYSQL_PASSWORD=secret |
--- | |
apiVersion: apps/v1 | |
kind: Deployment | |
metadata: | |
name: my-first-nginx-deployment | |
labels: | |
app: my-nginx | |
spec: | |
replicas: 3 | |
strategy: |
import qrcode | |
def createQr(vwz,iban,bic,recipient,amount,filename="epc_qr"): | |
# The docs can be found here: https://pypi.org/project/qrcode/ | |
qr = qrcode.QRCode(error_correction=qrcode.constants.ERROR_CORRECT_M) | |
qr.add_data("BCD\n") | |
qr.add_data("002\n") | |
qr.add_data("1\n") | |
qr.add_data("SCT\n") |
version: "3" | |
services: | |
cockroach1: | |
image: cockroachdb/cockroach:v19.2.0 | |
command: start --insecure | |
ports: | |
- "8080:8080" | |
volumes: | |
- ./data/cockroach1:/cockroach/cockroach-data | |
networks: |
version: '3.7' | |
services: | |
db: | |
image: mysql:5.7 | |
volumes: | |
- ./data/mysql:/var/lib/mysql | |
restart: always | |
environment: | |
MYSQL_ROOT_PASSWORD: sehr_geheim | |
MYSQL_DATABASE: wordpress |
& "C:\Program Files (x86)\Google\Chrome\Application\chrome.exe" --no-default-browser-check --no-first-run --disable-infobars --disable-session-crashed-bubble --kiosk https://heise.de --overscroll-history-navigation=0 --user-data-dir=c:/screen1 | |
& "C:\Program Files (x86)\Google\Chrome\Application\chrome.exe" --no-default-browser-check --no-first-run --disable-infobars --disable-session-crashed-bubble --kiosk https://ct.de --overscroll-history-navigation=0 --window-position=1920,0 --user-data-dir=c:/screen2 | |
Add-Type -AssemblyName System.Windows.Forms | |
[Windows.Forms.Cursor]::Position = "100000,100000" |