Categories
Docker

Docker

 

My most commonly used docker images:
postgres

docker run --name some-postgres -v /data/raw/:/data/raw/ -v /data/postgres:/var/lib/postgresql/data -d postgres

portainer: nice docker web gui.  It includes templates you may dnload without going to command line.

sudo docker volume create portainer_data
sudo docker run -d -p 9000:9000 --name portainer --restart always -v /var/run/docker.sock:/var/run/docker.sock -v portainer_data:/data portainer/portainer

redis – Started from portainer
rabbitmq – started from portainer

Leave a Reply

Your email address will not be published. Required fields are marked *