mirror of
https://github.com/Dokploy/dokploy
synced 2025-06-26 18:27:59 +00:00
chore: format whole repository with new configs
This commit is contained in:
@@ -1,4 +1,5 @@
|
||||
import type { Mariadb } from "@/server/api/services/mariadb";
|
||||
import type { Mount } from "@/server/api/services/mount";
|
||||
import { docker } from "@/server/constants";
|
||||
import type { CreateServiceOptions } from "dockerode";
|
||||
import {
|
||||
@@ -8,7 +9,6 @@ import {
|
||||
generateVolumeMounts,
|
||||
prepareEnvironmentVariables,
|
||||
} from "../docker/utils";
|
||||
import type { Mount } from "@/server/api/services/mount";
|
||||
|
||||
type MariadbWithMounts = Mariadb & {
|
||||
mounts: Mount[];
|
||||
|
||||
@@ -1,4 +1,6 @@
|
||||
import type { Mongo } from "@/server/api/services/mongo";
|
||||
import type { Mount } from "@/server/api/services/mount";
|
||||
import type { Postgres } from "@/server/api/services/postgres";
|
||||
import { docker } from "@/server/constants";
|
||||
import type { CreateServiceOptions } from "dockerode";
|
||||
import {
|
||||
@@ -8,8 +10,6 @@ import {
|
||||
generateVolumeMounts,
|
||||
prepareEnvironmentVariables,
|
||||
} from "../docker/utils";
|
||||
import type { Postgres } from "@/server/api/services/postgres";
|
||||
import type { Mount } from "@/server/api/services/mount";
|
||||
|
||||
type MongoWithMounts = Mongo & {
|
||||
mounts: Mount[];
|
||||
|
||||
@@ -1,4 +1,7 @@
|
||||
import type { Mount } from "@/server/api/services/mount";
|
||||
import type { MySql } from "@/server/api/services/mysql";
|
||||
import { docker } from "@/server/constants";
|
||||
import type { CreateServiceOptions } from "dockerode";
|
||||
import {
|
||||
calculateResources,
|
||||
generateBindMounts,
|
||||
@@ -6,9 +9,6 @@ import {
|
||||
generateVolumeMounts,
|
||||
prepareEnvironmentVariables,
|
||||
} from "../docker/utils";
|
||||
import { docker } from "@/server/constants";
|
||||
import type { CreateServiceOptions } from "dockerode";
|
||||
import type { Mount } from "@/server/api/services/mount";
|
||||
|
||||
type MysqlWithMounts = MySql & {
|
||||
mounts: Mount[];
|
||||
|
||||
@@ -1,4 +1,7 @@
|
||||
import type { Mount } from "@/server/api/services/mount";
|
||||
import type { Postgres } from "@/server/api/services/postgres";
|
||||
import { docker } from "@/server/constants";
|
||||
import type { CreateServiceOptions } from "dockerode";
|
||||
import {
|
||||
calculateResources,
|
||||
generateBindMounts,
|
||||
@@ -6,9 +9,6 @@ import {
|
||||
generateVolumeMounts,
|
||||
prepareEnvironmentVariables,
|
||||
} from "../docker/utils";
|
||||
import { docker } from "@/server/constants";
|
||||
import type { CreateServiceOptions } from "dockerode";
|
||||
import type { Mount } from "@/server/api/services/mount";
|
||||
|
||||
type PostgresWithMounts = Postgres & {
|
||||
mounts: Mount[];
|
||||
|
||||
@@ -1,4 +1,7 @@
|
||||
import type { Mount } from "@/server/api/services/mount";
|
||||
import type { Redis } from "@/server/api/services/redis";
|
||||
import { docker } from "@/server/constants";
|
||||
import type { CreateServiceOptions } from "dockerode";
|
||||
import {
|
||||
calculateResources,
|
||||
generateBindMounts,
|
||||
@@ -6,9 +9,6 @@ import {
|
||||
generateVolumeMounts,
|
||||
prepareEnvironmentVariables,
|
||||
} from "../docker/utils";
|
||||
import { docker } from "@/server/constants";
|
||||
import type { CreateServiceOptions } from "dockerode";
|
||||
import type { Mount } from "@/server/api/services/mount";
|
||||
|
||||
type RedisWithMounts = Redis & {
|
||||
mounts: Mount[];
|
||||
|
||||
Reference in New Issue
Block a user