FazBrowse GitHub Viewer
|
Trending
|
URL:
|
Home
Tools:
[Download Repo ZIP]
[View Raw Code]
[Original HTTPS Page]
testcontainers-java/Vagrantfile at docker-java-3 · anandps/testcontainers-java · GitHub
anandps
/
testcontainers-java
Public
forked from
testcontainers/testcontainers-java
Notifications
You must be signed in to change notification settings
Fork
0
Star
0
Code
Pull requests
0
Actions
Projects
Security and quality
0
Insights
Additional navigation options
Code
Pull requests
Actions
Projects
Security and quality
Insights
Expand file tree
Breadcrumbs
testcontainers-java
/
Vagrantfile
Copy path
More file actions
More file actions
Latest commit
History
History
History
18 lines (13 loc) · 390 Bytes
Breadcrumbs
testcontainers-java
/
Vagrantfile
Copy path
File metadata and controls
18 lines (13 loc) · 390 Bytes
Raw
Copy raw file
Download raw file
Open symbols panel
Edit and raw actions
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
# -*- mode: ruby -*-
# vi: set ft=ruby :
Vagrant
.
configure
(
2
)
do
|
config
|
config
.
vm
.
box
=
"box-cutter/ubuntu1504-docker"
config
.
vm
.
network
"private_network"
,
ip
:
"192.168.33.10"
config
.
vm
.
provider
"virtualbox"
do
|
vb
|
vb
.
memory
=
"2048"
end
config
.
vm
.
provision
"shell"
,
inline
:
<<-SHELL
sudo apt-get update
sudo apt-get install -y openjdk-8-jdk maven
SHELL
end
Back
|
FazBrowse Home
|
New Git URL