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/
|
**/config/
|
||||||
**/data/
|
**/data/
|
||||||
.env
|
.env
|
||||||
|
.Trash*
|
||||||
|
|
||||||
comfyui/config/
|
comfyui/config/
|
||||||
comfyui/.git/
|
comfyui/.git/
|
||||||
|
2
tool.sh
2
tool.sh
@ -233,7 +233,7 @@ main() {
|
|||||||
-p|--pull) pull_containers; exit 0 ;;
|
-p|--pull) pull_containers; exit 0 ;;
|
||||||
-s|--start) start_containers; exit 0 ;;
|
-s|--start) start_containers; exit 0 ;;
|
||||||
-r|--restart) stop_containers; 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 ;;
|
-d|--down) stop_containers; exit 0 ;;
|
||||||
-l|--list) list_containers true; exit 0 ;;
|
-l|--list) list_containers true; exit 0 ;;
|
||||||
*) log_error "Invalid option: $1"; show_usage; exit 1 ;;
|
*) 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