Table of Contents
Most of the stack used here are available in my github repo.
My docker localhost setup
This is my localhost setup.
Enable swarn mode
docker swarm init
protainer deployment
docker stack deploy --compose-file=portainer-agent-stack.yml portainer
MySql Volume
docker volume create mysql1
Postgres Volume
docker volume create postgres
Mongo Volume
docker volume create mongo1
deploy mysql stack
docker stack deploy --compose-file=mysql_stack.yml mysql
deploy mongodb stack
docker stack deploy --compose-file=mongo_stack.yml mongo
deploy postgres stack
docker stack deploy --compose-file=postgres_stack.yml postgres
docker see the services
docker service ls
Related Posts
Azure Deployment for .Net - Introduction - Prerequisites
This is the introduction to the Azure Deployment for .Net series.
8/14/2023
Abp Dockerfile
In this post we will see how to create proper docker file for your abp application.
3/19/2023
MicroK8s - Hassle-free Kubernetes
In this post we will see how to get started with the MicroK8s Kubernetes distribution.
9/15/2022