Tabulify Services

Undraw My Documents

Tabulify Services

Services represents processes that start and stop systems.

Provider

Storage

The service metadata is stored in the configuration vault

Example with the howto mysql service in docker format

services:
  sqlserver:
    type: docker
    image: mcr.microsoft.com/mssql/server:2022-CU18-ubuntu-22.04
    ports:
      - 1433:1433
    environment:
      ACCEPT_EULA: Y
      MSSQL_SA_PASSWORD: TheSecret1!

As for any value in the configuration vault, you can use:

Tabul Service: List/Info

The tabul service module permits to manage the services at the command line.

Attributes

All services will have the following attributes

Name Description
NAME The name of the service
TYPE The type of the service (ie the provider name)
IS_STARTED Boolean that returns true if the service is started, false otherwise

Each service provider may bring its own attributes.




Related HowTo
Undraw My Documents
How to start and use the HowTo MySQL database in Tabulify

This howto shows you how to: start an mysql database with the mysql howto docker service and use the @mysql default howto mysql connection in tabul commands. howto docker services are an...
Undraw My Documents
How to start and use the HowTo SMTP server in Tabulify ?

We provide a smtp: howto connection and howto service (ie a Mailpit smtp server, a local server that accepts all messages) This howto shows you how to: start an SMTP server with the smtp howto...
Undraw My Documents
How to start and use the HowTo SqlServer database in Tabulify

This howto shows you how to: start an sqlserver database with the sqlserver howto docker service and use the @sqlserver default howto sqlserver connection in tabul commands. howto docker services...
Undraw My Documents
How to start and use the Oracle database in Tabulify

This howto shows you how to: start an oracle database with the oracle docker service and use the @oracle default howto oracle connection in tabul command. howto docker services are an easy...

Task Runner