Skip to content
Toggle navigation
P
Projects
G
Groups
S
Snippets
Help
ipgallery
/
devops
This project
Loading...
Sign in
Toggle navigation
Go to a project
Project
Repository
Registry
Issues
0
Merge Requests
0
Wiki
Settings
Activity
Graph
Charts
Create a new issue
Commits
Issue Boards
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Commit
8a3fb7aa
authored
Jun 14, 2017
by
Avi Junowicz
Browse files
Options
_('Browse Files')
Download
Email Patches
Plain Diff
updated the file
parent
ad59684f
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
41 additions
and
0 deletions
common/docs/What's needed to be changed when configuring a new VM.txt
common/docs/What's needed to be changed when configuring a new VM.txt
View file @
8a3fb7aa
...
@@ -21,3 +21,44 @@ kernel.shmall=10485760
...
@@ -21,3 +21,44 @@ kernel.shmall=10485760
_____________________________________
_____________________________________
Reboot – reboot the server
Reboot – reboot the server
Docker
Change the IP's in the docker yml files under /opt/mcx/config/docker.
Install docker and docker-compose if needed and do the below configuration to work with private repository:
Ubuntu 14.04
cd /root/.docker
vi config.json
{
"auths": {
"172.16.1.212:5050": {
"auth": "YW1pcmE6Z2lwdG1ncnI="
},
"https://172.16.1.212:5050/v2/": {
"auth": "YW1pcmE6Z2lwdG1ncnI=",
"email": "amira"
}
}
}
cd /etc/default/
vi docker (add the below line)
DOCKER_OPTS="--insecure-registry 172.16.1.212:5050 --insecure-registry 172.16.1.132:5000 -H tcp://0.0.0.0:2375 -H unix:///var/run/docker.sock"
Ubuntu 16.04
Need to also update the following file and the restart:
cd /etc/docker
vi daemon.json
{
"insecure-registries": ["172.16.1.212:5050","172.16.1.132:5000"]
}
Once those files are updated, need to restart Docker with "service docker restart"
Change Admin Profile can be done with Robomongo
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