Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
H
hivemind
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Deploy
Releases
Package registry
Container Registry
Model registry
Operate
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
hive
hivemind
Commits
dc6ec92a
Commit
dc6ec92a
authored
7 years ago
by
roadscape
Browse files
Options
Downloads
Patches
Plain Diff
change web port back to 8080
parent
b7cb53c8
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
Dockerfile
+1
-1
1 addition, 1 deletion
Dockerfile
docker-compose.yml
+1
-1
1 addition, 1 deletion
docker-compose.yml
hive/server/serve.py
+1
-1
1 addition, 1 deletion
hive/server/serve.py
with
3 additions
and
3 deletions
Dockerfile
+
1
−
1
View file @
dc6ec92a
...
...
@@ -8,7 +8,7 @@ ENV LC_ALL en_US.UTF-8
ENV
PIPENV_VENV_IN_PROJECT 1
ENV
APP_ROOT /app
ENV
WSGI_APP ${APP_ROOT}/hive/server/serve.py
ENV
HTTP_SERVER_PORT
900
0
ENV
HTTP_SERVER_PORT
808
0
RUN
\
apt-get update
&&
\
...
...
This diff is collapsed.
Click to expand it.
docker-compose.yml
+
1
−
1
View file @
dc6ec92a
...
...
@@ -22,7 +22,7 @@ services:
links
:
-
mysql:db
ports
:
-
9000:900
0
-
8080:808
0
volumes
:
-
.:/app
restart
:
always
...
...
This diff is collapsed.
Click to expand it.
hive/server/serve.py
+
1
−
1
View file @
dc6ec92a
...
...
@@ -97,7 +97,7 @@ if __name__ == '__main__':
import
argparse
parser
=
argparse
.
ArgumentParser
(
description
=
"
hivemind jsonrpc server
"
)
parser
.
add_argument
(
'
--database_url
'
,
type
=
str
,
default
=
'
mysql://root:root_password@127.0.0.1:3306/testdb
'
)
parser
.
add_argument
(
'
--port
'
,
type
=
int
,
default
=
900
0
)
parser
.
add_argument
(
'
--port
'
,
type
=
int
,
default
=
808
0
)
args
=
parser
.
parse_args
()
app
[
'
config
'
][
'
args
'
]
=
args
web
.
run_app
(
app
,
port
=
args
.
port
)
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment