Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
zoe
main
Commits
14d89e6a
Commit
14d89e6a
authored
Oct 25, 2016
by
Daniele Venzano
Browse files
Remove old scripts
parent
64efc41f
Changes
2
Hide whitespace changes
Inline
Side-by-side
basic_usage.sh
deleted
100755 → 0
View file @
64efc41f
#!/usr/bin/env bash
set
-e
export
ZOE_USER
=
admin
export
ZOE_PASS
=
changeme
export
ZOE_URL
=
http://localhost:4850
echo
"Get statistics"
./zoe.py stats
echo
"Get superuser"
./zoe.py user-get zoeadmin
echo
"Create a new user"
./zoe.py user-new
--name
test
--password
test
--role
guest
echo
"Delete a user"
./zoe.py user-rm
test
echo
"Export an application template"
./zoe.py pre-app-export hdfs
>
/tmp/zoe-hdfs.json
start_zoe.sh
deleted
100644 → 0
View file @
64efc41f
#!/bin/bash
echo
"The images for this script are not yet available on the Docker Hub"
exit
1
if
[
!
`
which tmux
`
]
;
then
echo
"This script uses the tmux terminal multiplexer, but it is not available in PATH"
exit
1
fi
# Address for the Swarm API endpoint
SWARM_ADDRESS
=
"swarm:2380"
sudo
docker
-H
${
SWARM_ADDRESS
}
run
-i
-t
--rm
=
true
-e
ZOE_MASTER_SWARM
=
${
SWARM_ADDRESS
}
zoerepo/zoe-master
sudo
docker
-H
${
SWARM_ADDRESS
}
run
-i
-t
--rm
=
true
zoerepo/zoe-client ./zoe-web.py
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment