Skip to content
Projects
Groups
Snippets
Help
Loading...
Sign in
Toggle navigation
J
jumpserver
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
ops
jumpserver
Commits
5e41c5ca
Commit
5e41c5ca
authored
Mar 15, 2018
by
ibuler
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
[Update] 删掉没用的脚本
parent
d92d09bd
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
0 additions
and
40 deletions
+0
-40
build_docker.sh
utils/build_docker.sh
+0
-5
export_init_data.sh
utils/export_init_data.sh
+0
-18
init_db.sh
utils/init_db.sh
+0
-4
run_docker.sh
utils/run_docker.sh
+0
-13
No files found.
utils/build_docker.sh
deleted
100755 → 0
View file @
d92d09bd
#!/bin/bash
#
cd
..
docker build
-t
jumpserver/jumpserver:v0.4.0-beta1
.
utils/export_init_data.sh
deleted
100644 → 0
View file @
d92d09bd
#!/bin/bash
#
python ../apps/manage.py shell
<<
EOF
from users.models import *
init_model()
from assets.models import *
init_model()
EOF
python ../apps/manage.py dbshell
<<
EOF
delete from auth_permission;
delete from django_content_type;
EOF
python ../apps/manage.py dumpdata
>
../apps/fixtures/init.json
utils/init_db.sh
deleted
100755 → 0
View file @
d92d09bd
#!/bin/bash
#
python ../apps/manage.py loaddata init
utils/run_docker.sh
deleted
100755 → 0
View file @
d92d09bd
#!/bin/bash
#
# Run redis
docker run
--name
redis
-d
redis
# Run jumpserver
docker run
-d
--name
jumpserver
-p
8080:8080
--link
redis:redis jumpserver/jumpserver:v0.4.0-beta1
# Finished
echo
-e
"Please visit http://ServerIP:8080
\n
Username: admin
\n
Password: admin
\n
"
\ No newline at end of file
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