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/bash | |
# | |
# Autor: Robin Moser, 2021 | |
# This script lists all files of a specified directory and saves it | |
# with its computed sha1 checksum in a text file. Useful for comparing, | |
# finding duplicates, logging, etc. | |
# | |
# Usage: | |
# ./generate_checksums.sh <directory> <slug> | |
# |
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
version: '3.7' | |
services: | |
mysql: | |
image: mariadb:10.3.5 | |
networks: | |
- default | |
environment: | |
MYSQL_ROOT_PASSWORD: $DB_ROOT_PASSWORD | |
MYSQL_DATABASE: $DB_NAME |