Docker tips and tricks: Difference between revisions

From Lolly's Wiki
Jump to navigationJump to search
m (Text replacement - "<source" to "<syntaxhighlight")
m (Text replacement - "</source" to "</syntaxhighlight")
Line 3: Line 3:
<syntaxhighlight lang=bash>
<syntaxhighlight lang=bash>
# systemctl edit docker.service
# systemctl edit docker.service
</source>
</syntaxhighlight>
Enter the next three lines and save:
Enter the next three lines and save:
<syntaxhighlight lang=ini>
<syntaxhighlight lang=ini>
Line 9: Line 9:
Environment="HTTP_PROXY=user:pass@proxy:port"
Environment="HTTP_PROXY=user:pass@proxy:port"
Environment="HTTPS_PROXY=user:pass@proxy:port"
Environment="HTTPS_PROXY=user:pass@proxy:port"
</source>
</syntaxhighlight>


Restart docker:
Restart docker:
<syntaxhighlight lang=bash>
<syntaxhighlight lang=bash>
# systemctl restart docker.service
# systemctl restart docker.service
</source>
</syntaxhighlight>


== Some useful aliases ==
== Some useful aliases ==
Line 25: Line 25:
alias omd-start='docker container run --rm -dit -p 8080:5000 --tmpfs /omd/sites/omd/tmp:uid=1000,gid=1000 --ulimit nofile=1024 -v monitoring:/omd/sites --name monitoring -e CMK_SITE_ID=omd -e MAIL_RELAY_HOST='\''smtp-gw.server.tld'\'' -v /etc/localtime:/etc/localtime:ro checkmk/check-mk-raw:1.6.0p12'
alias omd-start='docker container run --rm -dit -p 8080:5000 --tmpfs /omd/sites/omd/tmp:uid=1000,gid=1000 --ulimit nofile=1024 -v monitoring:/omd/sites --name monitoring -e CMK_SITE_ID=omd -e MAIL_RELAY_HOST='\''smtp-gw.server.tld'\'' -v /etc/localtime:/etc/localtime:ro checkmk/check-mk-raw:1.6.0p12'
alias omd-stop='docker stop $(docker ps --filter name=monitoring -q)'
alias omd-stop='docker stop $(docker ps --filter name=monitoring -q)'
</source>
</syntaxhighlight>

Revision as of 03:59, 26 November 2021

Using docker behind a proxy

# systemctl edit docker.service

Enter the next three lines and save:

[Service]
Environment="HTTP_PROXY=user:pass@proxy:port"
Environment="HTTPS_PROXY=user:pass@proxy:port"

Restart docker:

# systemctl restart docker.service

Some useful aliases

I put this in my ~/.bash_aliases to maintain a check_mk container:

alias omd-log='docker container logs monitoring'
alias omd-recreate-volume='docker volume create --driver local --opt type=nfs --opt o=addr=nfs.server.tld,rw --opt device=:/share monitoring'
alias omd-root='docker container exec -it $(docker ps --filter name=monitoring -q) /bin/bash'
alias omd-cmk='docker container exec -it -u omd monitoring bash'
alias omd-start='docker container run --rm -dit -p 8080:5000 --tmpfs /omd/sites/omd/tmp:uid=1000,gid=1000 --ulimit nofile=1024 -v monitoring:/omd/sites --name monitoring -e CMK_SITE_ID=omd -e MAIL_RELAY_HOST='\''smtp-gw.server.tld'\'' -v /etc/localtime:/etc/localtime:ro checkmk/check-mk-raw:1.6.0p12'
alias omd-stop='docker stop $(docker ps --filter name=monitoring -q)'