2 min read · tagged scad
Division of hardware resources by implementing many instances with isolation properties.
Standard image spec: Open Container Initiative (OCI)
LXC
Rocket
Docker
Describe with docker-compose.yml
files
instance details
version: '2.1'
services:
myservice:
image: myimage
restart: always
depends_on:
- myotherservice
environment:
- VAR=value
ports:
- "80:443"
logging:
options:
max-size: "10m"
Compose tools for log merging and command execution per instance.
docker-compose up
docker-compose down --volumes
Sites on which containerised service implementations are offered: Hubs, Stores, Exchanges, Marketplaces
Containerised Application
├── Monolithic
├── Microservices
│ ├── Master-Slave
│ ├── Nested-Container
Related Processes Per Container (RPPC
)
Containers in VMs - simple but limited, more complex, single point of failures
Cloud-native with data-center as a single Docker host, routing and discovery components
Simon Anliker Someone has to write all this stuff.