seatable / seatable

SeaTable: easy like a spreadsheet, powerful like a database. Unlimited rows in a single base.

Home Page:https://seatable.io

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Container-native deployment environment

almereyda opened this issue · comments

Currently the Docker Compose stack boots up some individual components for stateful and stateless databases, but orchestrates all components of the application within the same container. This so called fat container pattern is discouraged, and each of the jobs could run in individual containers based from the same image, using the command: directive.

Some useful one-off jobs, network routing and dependency control (depends_on:) would have to be in place, for this to work easily. One-time initialisation jobs can always be put into run --rm -it invocations of a container, too.