Commit 8a3fb7aa by Avi Junowicz

updated the file

parent ad59684f
......@@ -21,3 +21,44 @@ kernel.shmall=10485760
_____________________________________
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
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or sign in to comment