Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
P
p04_1
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Service Desk
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Operations
Operations
Incidents
Environments
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
PUBLIC_DOCKERKUBERNETES
p04_1
Commits
49cf48e0
Commit
49cf48e0
authored
May 14, 2019
by
Benguria Elguezabal, Gorka
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
first version
parents
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
20 additions
and
0 deletions
+20
-0
.gitignore
.gitignore
+1
-0
Vagrantfile
Vagrantfile
+19
-0
No files found.
.gitignore
0 → 100644
View file @
49cf48e0
.vagrant/
Vagrantfile
0 → 100644
View file @
49cf48e0
# this is ruby language
Vagrant
.
configure
(
"2"
)
do
|
config
|
config
.
vm
.
box
=
"ubuntu/bionic64"
config
.
vm
.
provider
"virtualbox"
do
|
vb
|
vb
.
name
=
'p04_1'
vb
.
gui
=
true
vb
.
customize
[
"modifyvm"
,
:id
,
"--memory"
,
1024
]
vb
.
customize
[
"modifyvm"
,
:id
,
"--cpus"
,
1
]
#https://serverfault.com/questions/453185/vagrant-virtualbox-dns-10-0-2-3-not-working?utm_medium=organic&utm_source=google_rich_qa&utm_campaign=google_rich_qa
vb
.
customize
[
"modifyvm"
,
:id
,
"--natdnshostresolver1"
,
"on"
]
#https://betacloud.io/get-rid-of-ubuntu-xenial-16-04-cloudimg-console-log/
vb
.
customize
[
"modifyvm"
,
:id
,
"--uartmode1"
,
"disconnected"
]
end
config
.
vm
.
network
:forwarded_port
,
guest:
80
,
host:
80
config
.
vm
.
network
:forwarded_port
,
guest:
443
,
host:
443
config
.
vm
.
network
:forwarded_port
,
guest:
3306
,
host:
3306
config
.
vm
.
network
:forwarded_port
,
guest:
5000
,
host:
5000
config
.
vm
.
provision
"docker"
end
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