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" | |
| services: | |
| # Container 1 | |
| # https://hub.docker.com/_/mysql | |
| db: | |
| image: mysql:5.7 | |
| restart: always | |
| volumes: | |
| - db_data:/var/lib/mysql |
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 | |
| # update package index and install packages to allow repos over https | |
| sudo apt update | |
| sudo apt install ca-certificates curl gnupg lsb-release -y | |
| # add docker gpg key | |
| curl -fsSL https://download.docker.com/linux/ubuntu/gpg | sudo gpg --dearmor -o /usr/share/keyrings/docker-archive-keyring.gpg | |
| # setup stable repo |
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 | |
| adduser yourname | |
| pveum user add yourname@pam | |
| pveum passwd yourname@pam | |
| pveum aclmod / -user yourname@pam -role Administrator |
OlderNewer