Container Station can leverage docker-compose like syntax to deploy applications.
Docker compose syntax
version: '3'
services:
mongo-express:
image: mongo-express
restart: always
ports:
- 9091:8081
environment:
ME_CONFIG_MONGODB_ADMINUSERNAME: root
ME_CONFIG...