-
Notifications
You must be signed in to change notification settings - Fork 7
/
xteve
44 lines (38 loc) · 1.43 KB
/
xteve
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
#!/bin/bash
############# https://github.com/plexguide/PlexGuide.com/graphs/contributors ###
xteve () {
container_reset
# VARIABLES ####################################################################
pgrole="xteve"
port_inside01="34400"
port_outside01="34400"
traefik_extport="34400"
container_path /etc/localtime /etc/localtime:ro
container_path /pg/data/$pgrole/app/tmp /tmp/xteve:rw
container_path /pg/data/$pgrole/app/guide2go /home/xteve/guide2go/conf:rw
container_permissions XTEVE_UID 1000
container_permissions XTEVE_GID 1000
container_permissions XTEVE_BRANCH beta
# IMAGES EXPORT - 1ST IS DEFAULT ###############################################
cat <<- EOF > "/pg/images/$pgrole.images"
dnsforge/xteve:latest
EOF
# YML EXPORT ###################################################################
container_core
cat <<- EOF > "/pg/apps/$pgrole.yml"
$container_header
### ALIGN WITH THE A ################################## START - EXTRAS #########
####### ALIGN WITH THE A ############################## CORE ###################
$container_start
published_ports:
- '${portcheck_add}${port_outside01}:${port_inside01}'
env:
$container_permissions
labels:
$container_traefik
$container_oddball
$container_ending
### ALIGN WITH THE A ################################## END - EXTRAS ###########
### END OF FILE ################################################################
EOF
}