Custom service

Create a custom service to run anything Docker can run.

Under the hood services are simply Docker containers with pre-defined configurations and improved developer experience.

dockup.config.ts
import {  } from "dockup/config";
import {  } from "dockup/services";

export default ({
  : [
    ({
      : "database",
      : "postgres:latest",
      : () =>
        .("POSTGRES_USER", "dockup").(5432),
    }),
  ],
});