|
|
|
|
|
by jasonkolb
4636 days ago
|
|
Just create a bootstrap shell script that can be run on any machine. At a high level here's what mine does: 1) Install git
2) Clone a repo with all of the dockerfiles in it (each dockerfile corresponds to a container)
3) Install Docker
4) Start containers using the previously-mentioned scripts The advantage to using a shell script for this is that you can start it manually or via an automated system. All you need is the bootstrap script and you can start your app on any machine. Well, apart from the distributions the post mentions I guess. |
|