-
Notifications
You must be signed in to change notification settings - Fork 0
/
upup-docker.sh
executable file
·76 lines (51 loc) · 1.02 KB
/
upup-docker.sh
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
#!/bin/bash
DOCKERDIR=/opt/docker
container_start () {
if [ "$( docker container inspect -f '{{.State.Status}}' $1 )" == "running" ]; then
cd $DOCKERDIR/$1/
docker-compose -f $DOCKERDIR/$1/docker-compose.yml up -d
fi
}
### Bitwarden
container_start bitwarden
### Clarkson
container_start clarkson
### Collabora
container_start collabora
### DIUN
container_start diun
### FreshRSS
container_start freshrss
### Frontail
container_start frontail
### Grafana
container_start grafana
### Grocy
container_start grocy
### InfluxDB
container_start influxdb
### Jellyfin
container_start jellyfin
### Jitsi
container_start jitsi
### MariaDB
container_start mariadb
### Mosquitto
container_start mosquitto
### Nextcloud
container_start nc
### OpenVPN
container_start openvpn
### Paperless
container_start paperless-ng
### PHPmyAdmin
container_start phpmyadmin
### Portainer
container_start portainer
### Redis
container_start redis
### Traefik
container_start traefik
### TTrss
container_start ttrss
##EOF