datasquirel/package-shared/utils/grab-docker-resource-ip-numbers.ts
Benjamin Toby 8ac8b8eb51 Updates
2025-07-28 07:23:45 +01:00

17 lines
357 B
TypeScript

export default function grabDockerResourceIPNumbers() {
return {
db: 32,
maxscale: 24,
postDbSetup: 43,
reverse_proxy: 34,
web: 35,
websocket: 36,
cron: 27,
db_cron: 20,
replica_1: 37,
replica_2: 38,
web_app_post_db_setup: 71,
static: 77,
} as const;
}