Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in
Toggle navigation
Menu
Open sidebar
小 白蛋
Nomad
Commits
15f9fea2
Unverified
Commit
15f9fea2
authored
5 years ago
by
Tim Gross
Committed by
GitHub
5 years ago
Browse files
Options
Download
Email Patches
Plain Diff
dev: expose Consul port 8500 in linux-ui Vagrantfile (#6292)
parent
c9f76564
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
Vagrantfile
+6
-5
Vagrantfile
with
6 additions
and
5 deletions
+6
-5
Vagrantfile
+
6
-
5
View file @
15f9fea2
...
...
@@ -44,12 +44,13 @@ Vagrant.configure(2) do |config|
privileged:
false
,
path:
'./scripts/vagrant-linux-unpriv-bootstrap.sh'
# Expose the nomad api and ui to the host
vmCfg
.
vm
.
network
"forwarded_port"
,
guest:
4646
,
host:
4646
,
auto_correct:
true
# Expose the nomad api and ui to the host
vmCfg
.
vm
.
network
:forwarded_port
,
guest:
4646
,
host:
4646
,
auto_correct:
true
vmCfg
.
vm
.
network
:forwarded_port
,
guest:
8500
,
host:
8500
,
auto_correct:
true
# Expose Ember ports to the host (one for the site, one for livereload)
vmCfg
.
vm
.
network
:forwarded_port
,
guest:
4201
,
host:
4201
,
auto_correct:
true
vmCfg
.
vm
.
network
:forwarded_port
,
guest:
49153
,
host:
49153
,
auto_correct:
true
# Expose Ember ports to the host (one for the site, one for livereload)
vmCfg
.
vm
.
network
:forwarded_port
,
guest:
4201
,
host:
4201
,
auto_correct:
true
vmCfg
.
vm
.
network
:forwarded_port
,
guest:
49153
,
host:
49153
,
auto_correct:
true
end
config
.
vm
.
define
"freebsd"
,
autostart:
false
,
primary:
false
do
|
vmCfg
|
...
...
This diff is collapsed.
Click to expand it.
Write
Preview
Supports
Markdown
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
Menu
Projects
Groups
Snippets
Help