adds vaultwarden, fixes tool.sh update feature, unarchives factorio
Signed-off-by: Menno van Leeuwen <menno@vleeuwen.me>
This commit is contained in:
parent
e9e3bcd53f
commit
ba27cab6d2
1
.gitignore
vendored
1
.gitignore
vendored
@ -1,6 +1,7 @@
|
||||
**/config/
|
||||
**/data/
|
||||
.env
|
||||
.Trash*
|
||||
|
||||
comfyui/config/
|
||||
comfyui/.git/
|
||||
|
4
tool.sh
4
tool.sh
@ -37,7 +37,7 @@ show_spinner() {
|
||||
local spinstr='/-\|'
|
||||
printf " "
|
||||
tput sc
|
||||
|
||||
|
||||
while kill -0 "${pid}" 2>/dev/null; do
|
||||
local temp=${spinstr#?}
|
||||
tput rc
|
||||
@ -233,7 +233,7 @@ main() {
|
||||
-p|--pull) pull_containers; exit 0 ;;
|
||||
-s|--start) start_containers; exit 0 ;;
|
||||
-r|--restart) stop_containers; start_containers; exit 0 ;;
|
||||
-u|--update) stop_containers; pull_containers; start_containers; exit 0 ;;
|
||||
-u|--update) pull_containers; start_containers; exit 0 ;;
|
||||
-d|--down) stop_containers; exit 0 ;;
|
||||
-l|--list) list_containers true; exit 0 ;;
|
||||
*) log_error "Invalid option: $1"; show_usage; exit 1 ;;
|
||||
|
10
vaultwarden/docker-compose.yml
Normal file
10
vaultwarden/docker-compose.yml
Normal file
@ -0,0 +1,10 @@
|
||||
services:
|
||||
vaultwarden:
|
||||
image: vaultwarden/server:latest
|
||||
restart: unless-stopped
|
||||
environment:
|
||||
DOMAIN: "https://vw.mvl.sh"
|
||||
volumes:
|
||||
- ./data/:/data/
|
||||
ports:
|
||||
- 9090:80
|
Loading…
x
Reference in New Issue
Block a user