-
-
Notifications
You must be signed in to change notification settings - Fork 17
/
sregistry-cli.scif
85 lines (64 loc) · 1.83 KB
/
sregistry-cli.scif
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
76
77
78
79
80
81
82
83
84
85
#######################################
# Google Cloud Storage
#######################################
%appenv swift
SREGISTRY_CLIENT=swift
export SREGISTRY_CLIENT
%apprun swift
exec /opt/conda/bin/sregistry "$@"
#######################################
# Google Cloud Storage
#######################################
%appenv google-storage
SREGISTRY_CLIENT=google-storage
export SREGISTRY_CLIENT
%apprun google-storage
exec /opt/conda/bin/sregistry "$@"
#######################################
# Google Cloud Build
#######################################
%appenv google-build
SREGISTRY_CLIENT=google-build
export SREGISTRY_CLIENT
%apprun google-build
exec /opt/conda/bin/sregistry "$@"
#######################################
# Google Cloud Drive
#######################################
%appenv google-drive
SREGISTRY_CLIENT=google-drive
export SREGISTRY_CLIENT
%apprun google-drive
exec /opt/conda/bin/sregistry "$@"
#######################################
# Singularity Hub
#######################################
%appenv hub
SREGISTRY_CLIENT=hub
export SREGISTRY_CLIENT
%apprun hub
exec /opt/conda/bin/sregistry "$@"
#######################################
# Singularity Registry
#######################################
%appenv registry
SREGISTRY_CLIENT=registry
export SREGISTRY_CLIENT
%apprun registry
exec /opt/conda/bin/sregistry "$@"
#######################################
# Docker Hub
#######################################
%appenv docker
SREGISTRY_CLIENT=docker
export SREGISTRY_CLIENT
%apprun docker
exec /opt/conda/bin/sregistry "$@"
#######################################
# Nvidia Cloud
#######################################
%appenv nvidia
SREGISTRY_CLIENT=nvidia
export SREGISTRY_CLIENT
%apprun nvidia
exec /opt/conda/bin/sregistry "$@"