Organize dev scripts from c:\dev into dev-scripts/

This commit is contained in:
Tiago Yamamoto 2026-03-04 05:58:41 -06:00
parent 6101b80dd4
commit 691071ec39
142 changed files with 4632 additions and 0 deletions

View file

@ -0,0 +1,60 @@
import { Card, CardContent, CardDescription, CardHeader, CardTitle } from "@/components/ui/card"
import { Table, TableBody, TableCell, TableHead, TableHeader, TableRow } from "@/components/ui/table"
import { Badge } from "@/components/ui/badge"
import { Input } from "@/components/ui/input"
import {
Select,
SelectContent,
SelectItem,
SelectTrigger,
SelectValue,
} from "@/components/ui/select"
import {
Dialog,
DialogContent,
DialogDescription,
DialogFooter,
DialogHeader,
DialogTitle,
DialogTrigger,
} from "@/components/ui/dialog"
import { Tabs, TabsContent, TabsList, TabsTrigger } from "@/components/ui/tabs"
import { Label } from "@/components/ui/label"
import { Textarea } from "@/components/ui/textarea"
import {
adminAccessApi,
adminAuditApi,
adminCompaniesApi,
adminJobsApi,
adminTagsApi,
backofficeApi,
plansApi,
type AdminCompany,
type AdminJob,
type AdminLoginAudit,
type AdminRoleAccess,
type AdminTag,
} from "@/lib/api"
import { getCurrentUser, isAdminUser } from "@/lib/auth"
import { toast } from "sonner"
import { Archive, CheckCircle, Copy, ExternalLink, PauseCircle, Plus, RefreshCw, XCircle } from "lucide-react"
import { ConfirmModal } from "@/components/confirm-modal"
const auditDateFormatter = new Intl.DateTimeFormat("pt-BR", {
dateStyle: "short",
timeStyle: "short",
timeZone: "America/Sao_Paulo",
})
const jobStatusBadge: Record<string, { label: string; variant: "default" | "secondary" | "destructive" | "outline" }> = {
draft: { label: "Draft", variant: "outline" },
review: { label: "Review", variant: "secondary" },
published: { label: "Published", variant: "default" },
paused: { label: "Paused", variant: "outline" },
expired: { label: "Expired", variant: "destructive" },
archived: { label: "Archived", variant: "outline" },
reported: { label: "Reported", variant: "destructive" },
open: { label: "Open", variant: "default" },
closed: { label: "Closed", variant: "outline" },
}

View file

@ -0,0 +1,7 @@
<ConfirmModal
isOpen={!!deletePlanId}
onClose={() => setDeletePlanId(null)}
onConfirm={confirmDeletePlan}
title="Are you sure you want to delete this plan?"
description="This action cannot be undone."
/>

View file

@ -0,0 +1,262 @@
<TabsContent value="dashboard" className="space-y-4">
{/* Stats Overview */}
{stats && (
<div className="grid gap-4 md:grid-cols-2 lg:grid-cols-4">
<Card>
<CardHeader className="flex flex-row items-center justify-between space-y-0 pb-2">
<CardTitle className="text-sm font-medium">Total Revenue</CardTitle>
<span className="text-xs text-muted-foreground">$</span>
</CardHeader>
<CardContent>
<div className="text-2xl font-bold">${stats.monthlyRevenue?.toLocaleString() || '0'}</div>
<p className="text-xs text-muted-foreground">{stats.revenueGrowth ? `+${stats.revenueGrowth}% from last month` : 'This month'}</p>
</CardContent>
</Card>
<Card>
<CardHeader className="flex flex-row items-center justify-between space-y-0 pb-2">
<CardTitle className="text-sm font-medium">Active Subscriptions</CardTitle>
<CheckCircle className="h-4 w-4 text-muted-foreground" />
</CardHeader>
<CardContent>
<div className="text-2xl font-bold">{stats.activeSubscriptions || 0}</div>
<p className="text-xs text-muted-foreground">{stats.subscriptionGrowth ? `+${stats.subscriptionGrowth} this week` : 'Current active'}</p>
</CardContent>
</Card>
<Card>
<CardHeader className="flex flex-row items-center justify-between space-y-0 pb-2">
<CardTitle className="text-sm font-medium">Companies</CardTitle>
<div className="h-4 w-4 text-muted-foreground" />
</CardHeader>
<CardContent>
<div className="text-2xl font-bold">{stats.totalCompanies || 0}</div>
<p className="text-xs text-muted-foreground">Platform total</p>
</CardContent>
</Card>
<Card>
<CardHeader className="flex flex-row items-center justify-between space-y-0 pb-2">
<CardTitle className="text-sm font-medium">New (Month)</CardTitle>
<Plus className="h-4 w-4 text-muted-foreground" />
</CardHeader>
<CardContent>
<div className="text-2xl font-bold">+{stats.newCompaniesThisMonth || 0}</div>
<p className="text-xs text-muted-foreground">Since start of month</p>
</CardContent>
</Card>
</div>
)}
<div className="grid gap-4 md:grid-cols-2 lg:grid-cols-7">
<Card className="col-span-4">
<CardHeader>
<CardTitle>Empresas pendentes</CardTitle>
<CardDescription>Aprovação e verificação de empresas.</CardDescription>
</CardHeader>
<CardContent>
<Table>
<TableHeader>
<TableRow>
<TableHead>Empresa</TableHead>
<TableHead>Status</TableHead>
<TableHead className="text-right">Ações</TableHead>
</TableRow>
</TableHeader>
<TableBody>
{companies.slice(0, 5).map((company) => (
<TableRow key={company.id}>
<TableCell className="font-medium">{company.name}</TableCell>
<TableCell>
{company.verified ? <Badge className="bg-green-500">Verificada</Badge> : <Badge variant="secondary">Pendente</Badge>}
</TableCell>
<TableCell className="text-right">
<Button size="sm" variant="ghost" onClick={() => handleApproveCompany(company.id)}>
<CheckCircle className="h-4 w-4" />
</Button>
</TableCell>
</TableRow>
))}
</TableBody>
</Table>
</CardContent>
</Card>
<Card className="col-span-3">
<CardHeader>
<CardTitle>Auditoria Recente</CardTitle>
<CardDescription>Últimos acessos.</CardDescription>
</CardHeader>
<CardContent>
<div className="space-y-8">
{audits.slice(0, 5).map((audit) => (
<div key={audit.id} className="flex items-center">
<div className="ml-4 space-y-1">
<p className="text-sm font-medium leading-none">{audit.identifier}</p>
<p className="text-xs text-muted-foreground">{auditDateFormatter.format(new Date(audit.createdAt))}</p>
</div>
<div className="ml-auto font-medium text-xs text-muted-foreground">{audit.roles}</div>
</div>
))}
</div>
</CardContent>
</Card>
</div>
</TabsContent>
<TabsContent value="plans" className="space-y-4">
<div className="flex justify-end">
<Button onClick={() => { setEditingPlanId(null); setPlanForm({ name: "", description: "", monthlyPrice: 0, yearlyPrice: 0, features: [] }); setIsPlanDialogOpen(true) }}>
<Plus className="mr-2 h-4 w-4" /> Create Plan
</Button>
</div>
<Card>
<CardHeader>
<CardTitle>Plans Management</CardTitle>
<CardDescription>Configure subscription plans.</CardDescription>
</CardHeader>
<CardContent>
<Table>
<TableHeader>
<TableRow>
<TableHead>Name</TableHead>
<TableHead>Monthly</TableHead>
<TableHead>Yearly</TableHead>
<TableHead className="text-right">Actions</TableHead>
</TableRow>
</TableHeader>
<TableBody>
{plans.map((plan) => (
<TableRow key={plan.id}>
<TableCell className="font-medium">{plan.name}</TableCell>
<TableCell>${plan.monthlyPrice}</TableCell>
<TableCell>${plan.yearlyPrice}</TableCell>
<TableCell className="text-right space-x-2">
<Button size="sm" variant="outline" onClick={() => { setEditingPlanId(plan.id); setPlanForm({ ...plan }); setIsPlanDialogOpen(true) }}>Edit</Button>
<Button size="sm" variant="destructive" onClick={() => handleDeletePlan(plan.id)}>Delete</Button>
</TableCell>
</TableRow>
))}
</TableBody>
</Table>
</CardContent>
</Card>
<Dialog open={isPlanDialogOpen} onOpenChange={setIsPlanDialogOpen}>
<DialogContent>
<DialogHeader>
<DialogTitle>{editingPlanId ? 'Edit Plan' : 'Create Plan'}</DialogTitle>
</DialogHeader>
<div className="grid gap-4 py-4">
<div className="grid gap-2">
<Label>Name</Label>
<Input value={planForm.name} onChange={(e) => setPlanForm({ ...planForm, name: e.target.value })} />
</div>
<div className="grid gap-2">
<Label>Description</Label>
<Input value={planForm.description} onChange={(e) => setPlanForm({ ...planForm, description: e.target.value })} />
</div>
<div className="grid grid-cols-2 gap-4">
<div className="grid gap-2">
<Label>Monthly Price</Label>
<Input type="number" value={planForm.monthlyPrice} onChange={(e) => setPlanForm({ ...planForm, monthlyPrice: e.target.value })} />
</div>
<div className="grid gap-2">
<Label>Yearly Price</Label>
<Input type="number" value={planForm.yearlyPrice} onChange={(e) => setPlanForm({ ...planForm, yearlyPrice: e.target.value })} />
</div>
</div>
<div className="grid gap-2">
<Label>Features (comma separated)</Label>
<Textarea value={Array.isArray(planForm.features) ? planForm.features.join(', ') : planForm.features} onChange={(e) => setPlanForm({ ...planForm, features: e.target.value })} />
</div>
</div>
<DialogFooter>
<Button variant="outline" onClick={() => setIsPlanDialogOpen(false)}>Cancel</Button>
<Button onClick={handleSavePlan}>Save</Button>
</DialogFooter>
</DialogContent>
</Dialog>
</TabsContent>
<TabsContent value="stripe" className="space-y-4">
<Card>
<CardHeader>
<CardTitle>Stripe Integration</CardTitle>
<CardDescription>Manage subscriptions and payments directly in Stripe Dashboard.</CardDescription>
</CardHeader>
<CardContent className="space-y-4">
<div className="p-4 border rounded bg-muted/20">
<p className="text-sm">
For security and advanced management (refunds, disputes, tax settings), please use the official Stripe Dashboard.
</p>
<div className="mt-4">
<a href="https://dashboard.stripe.com" target="_blank" rel="noreferrer">
<Button variant="outline">
Open Stripe Dashboard <ExternalLink className="ml-2 h-4 w-4" />
</Button>
</a>
</div>
</div>
</CardContent>
</Card>
</TabsContent>
<TabsContent value="system" className="space-y-4">
<Card>
<CardHeader>
<CardTitle>System & Caching</CardTitle>
<CardDescription>Maintenance tasks.</CardDescription>
</CardHeader>
<CardContent>
<div className="flex items-center justify-between p-4 border rounded">
<div>
<p className="font-medium">Cloudflare Cache</p>
<p className="text-sm text-muted-foreground">Purge all cached files from the edge.</p>
</div>
<Button variant="outline" onClick={handlePurgeCache}>Purge Cache</Button>
</div>
</CardContent>
</Card>
<Card>
<CardHeader>
<CardTitle>Tags Management</CardTitle>
</CardHeader>
<CardContent>
{/* Reusing existing Tags Table logic here if desired, or keep it in a sub-section */}
<div className="flex flex-col md:flex-row gap-4 mb-4">
<Input placeholder="New Tag" value={tagForm.name} onChange={(e) => setTagForm({ ...tagForm, name: e.target.value })} />
<Select value={tagForm.category} onValueChange={(val: any) => setTagForm({ ...tagForm, category: val })}>
<SelectTrigger className="w-40"><SelectValue placeholder="Category" /></SelectTrigger>
<SelectContent>
<SelectItem value="area">Area</SelectItem>
<SelectItem value="level">Level</SelectItem>
<SelectItem value="stack">Stack</SelectItem>
</SelectContent>
</Select>
<Button onClick={handleCreateTag} disabled={creatingTag}><Plus className="mr-2 h-4 w-4" /> Add</Button>
</div>
<Table>
<TableHeader>
<TableRow>
<TableHead>Tag</TableHead>
<TableHead>Category</TableHead>
<TableHead>Status</TableHead>
<TableHead className="text-right">Action</TableHead>
</TableRow>
</TableHeader>
<TableBody>
{tags.map((tag) => (
<TableRow key={tag.id}>
<TableCell>{tag.name}</TableCell>
<TableCell>{tag.category}</TableCell>
<TableCell>{tag.active ? <Badge className="bg-green-500">Active</Badge> : <Badge variant="outline">Inactive</Badge>}</TableCell>
<TableCell className="text-right">
<Button size="sm" variant="ghost" onClick={() => handleToggleTag(tag)}>Toggle</Button>
</TableCell>
</TableRow>
))}
</TableBody>
</Table>
</CardContent>
</Card>
</TabsContent>
</Tabs>
<ConfirmModal

27
dev-scripts/README.md Normal file
View file

@ -0,0 +1,27 @@
# Dev Scripts Organization
This folder contains scripts and temporary files moved from `c:\dev` to keep the workspace organized.
## Categories
### Database Scripts
- `*.sql`: SQL queries and schema updates.
- `create_db.ps1`, `run_sql.ps1`, `start_db.ps1`: Database management scripts.
### Deployment and Orchestration
- `*.yml`: Docker Compose files (e.g., `manual_compose.yml`, `disk_compose.yml`).
- `deploy_sh.ps1`, `recreate_*.sh`: Deployment and environment recreation scripts.
### Cloudflare and DNS
- `check_cf*.ps1`, `set_cf_dns.ps1`, `update_*_dns.ps1`: Cloudflare management scripts.
### Logs and Reports
- `*.txt`, `*.json`: Various log files, reports, and command outputs.
- `coolify_app_logs.txt`, `coolify_report.json`, etc.
### Application Specific
- `check_op*.ps1`, `restart_op.ps1`, `start_op.ps1`: OpenProject related scripts.
- `status_q1food.ps1`, `logs_q1food.ps1`: Q1Food specific scripts.
### Backups
- Folders ending in `_backup`: Backups of UI components or settings.

View file

@ -0,0 +1,24 @@
8afe956c6621 nwwsc0skgkoko8wcwo4kcg48 postgres:16-alpine Up 18 minutes (healthy)
fe2afa62af27 g8w440g0w0oowo8skss440wk-165436945654 g8w440g0w0oowo8skss440wk:5ba414aae61e3bdf49766357c5992025d9eef179 Up About an hour
6b716ed16c6a coolify-sentinel ghcr.io/coollabsio/sentinel:0.0.18 Up 18 hours (healthy)
3390a0bbca5a q4w48gos8cgssso00o8w8gck-114957702616 q4w48gos8cgssso00o8w8gck:6b1c058e8e356e9d073687db2571629265721301 Up 2 days (healthy)
6bf78b19f4bb iw4sow8s0kkg4cccsk08gsoo-102729139578 iw4sow8s0kkg4cccsk08gsoo:e5e43974a5879dfa3ea224188f16400b2a2330e2 Up 2 days
bd351513b56a ao8g40scws0w4cgo8coc8o40-022928730793 ao8g40scws0w4cgo8coc8o40:a6fd2fd8a5faf5db149a63411ecbd02b1ff06649 Up 2 days
03115bfcfc1f bookstack-ogs4okgoosk48cswoo0s4k84 lscr.io/linuxserver/bookstack:latest Up 2 days
08d6ea2a6444 hg48wkw4wggwsswcwc8sooo4-184835399749 hg48wkw4wggwsswcwc8sooo4:754acd9d3c01714e98c545314c5e1e1e106c0eee Up 2 days
f01aed9d6b81 mariadb-ogs4okgoosk48cswoo0s4k84 mariadb:10.11 Up 3 days
8be324c31edd vskkccs8880cg0ggckccsgww postgres:16-alpine Up 8 days (healthy)
135f1c40bfc0 vaultwarden-h8wg0gogw44swosgk8wgc8cs vaultwarden/server:latest Up 14 seconds (health: starting)
de01963ee162 sg0co4s44cs48o4kc4cgg844 postgres:16-alpine Up 8 days (healthy)
e9103e19c5e9 l4g4cc884gc04kg8s480gs48-030245213905 l4g4cc884gc04kg8s480gs48:48644b51175c1ea19b88f18e5dce7d13429c10ff Up 9 days
e5d17f3f74d0 ko0kkw4kw8g80scksg8sk0wc-030309160239 ko0kkw4kw8g80scksg8sk0wc:48644b51175c1ea19b88f18e5dce7d13429c10ff Up 9 days (healthy)
c0f00135565b s4kskw08400wcw8g40ossggo-030142033398 s4kskw08400wcw8g40ossggo:48644b51175c1ea19b88f18e5dce7d13429c10ff Up 9 days
fbab08d07099 ecso4woo4woo0ks84888k8ck-030128369577 ecso4woo4woo0ks84888k8ck:48644b51175c1ea19b88f18e5dce7d13429c10ff Up 9 days
a3322e2e3df9 forgejo-redbull codeberg.org/forgejo/forgejo:8 Up 9 days
5a95608d614e e8ogwk008c8s8sok8wc00ow0 postgres:16-alpine Up 10 days (healthy)
2f6e15bbbab6 bgws48os8wgwk08o48wg8k80 postgres:16-alpine Up 10 days (healthy)
d0835dcb2453 coolify-proxy traefik:v3.6 Up 9 days (healthy)
a2e53a7b689d coolify ghcr.io/coollabsio/coolify:4.0.0-beta.463 Up 9 days (healthy)
683eb01ee3f8 coolify-redis redis:7-alpine Up 10 days (healthy)
800291f1bab6 coolify-realtime ghcr.io/coollabsio/coolify-realtime:1.0.10 Up 10 days (healthy)
27906d01c45f coolify-db postgres:15-alpine Up 10 days (healthy)

1
dev-scripts/apps.json Normal file

File diff suppressed because one or more lines are too long

Binary file not shown.

View file

@ -0,0 +1,215 @@
{
"value": [
{
"uuid": "p4g0oc0ggk80804g0go4080w",
"is_buildtime": true,
"is_coolify": false,
"is_literal": false,
"is_multiline": false,
"is_nixpacks": false,
"is_preview": false,
"is_really_required": false,
"is_required": false,
"is_runtime": true,
"is_shared": false,
"is_shown_once": false,
"key": "DATABASE_URL",
"order": null,
"real_value": "postgres://q1food:q1food123@vskkccs8880cg0ggckccsgww:5432/q1food",
"value": "postgres://q1food:q1food123@vskkccs8880cg0ggckccsgww:5432/q1food",
"version": "4.0.0-beta.463",
"created_at": "2026-02-18T17:50:56.000000Z",
"updated_at": "2026-02-18T17:50:56.000000Z"
},
{
"uuid": "hwgcw48wsog0gkwo0swscswc",
"is_buildtime": true,
"is_coolify": false,
"is_literal": false,
"is_multiline": false,
"is_nixpacks": false,
"is_preview": false,
"is_really_required": false,
"is_required": false,
"is_runtime": true,
"is_shared": false,
"is_shown_once": false,
"key": "SECRET_KEY",
"order": null,
"real_value": "5c20242089aa95f9defdf2fda32041ff7a68d3116eba930886799a2634778429",
"value": "5c20242089aa95f9defdf2fda32041ff7a68d3116eba930886799a2634778429",
"version": "4.0.0-beta.463",
"created_at": "2026-02-18T17:51:30.000000Z",
"updated_at": "2026-02-18T17:51:30.000000Z"
},
{
"uuid": "uos8k8ockcw0cowco8g4gc4c",
"is_buildtime": true,
"is_coolify": false,
"is_literal": false,
"is_multiline": false,
"is_nixpacks": false,
"is_preview": false,
"is_really_required": false,
"is_required": false,
"is_runtime": true,
"is_shared": false,
"is_shown_once": false,
"key": "DEFAULT_TENANT_SLUG",
"order": null,
"real_value": "burger-house",
"value": "burger-house",
"version": "4.0.0-beta.463",
"created_at": "2026-02-18T17:51:30.000000Z",
"updated_at": "2026-02-18T17:51:30.000000Z"
},
{
"uuid": "i4g00soks4cw08skgswk4oko",
"is_buildtime": true,
"is_coolify": false,
"is_literal": false,
"is_multiline": false,
"is_nixpacks": false,
"is_preview": false,
"is_really_required": false,
"is_required": false,
"is_runtime": true,
"is_shared": false,
"is_shown_once": false,
"key": "DEBUG",
"order": null,
"real_value": "False",
"value": "False",
"version": "4.0.0-beta.463",
"created_at": "2026-02-18T17:51:30.000000Z",
"updated_at": "2026-02-18T17:51:30.000000Z"
},
{
"uuid": "f0wcgkco00ko0s800owk0kwk",
"is_buildtime": true,
"is_coolify": false,
"is_literal": false,
"is_multiline": false,
"is_nixpacks": false,
"is_preview": false,
"is_really_required": false,
"is_required": false,
"is_runtime": true,
"is_shared": false,
"is_shown_once": false,
"key": "FRONTEND_URL",
"order": null,
"real_value": "http://dev.q1food.com",
"value": "http://dev.q1food.com",
"version": "4.0.0-beta.463",
"created_at": "2026-02-18T17:51:30.000000Z",
"updated_at": "2026-02-18T17:51:30.000000Z"
},
{
"uuid": "lok4sko4gkcs4wcso0w48o0g",
"is_buildtime": true,
"is_coolify": false,
"is_literal": false,
"is_multiline": false,
"is_nixpacks": false,
"is_preview": true,
"is_really_required": false,
"is_required": false,
"is_runtime": true,
"is_shared": false,
"is_shown_once": false,
"key": "DATABASE_URL",
"order": null,
"real_value": "postgres://q1food:q1food123@vskkccs8880cg0ggckccsgww:5432/q1food",
"value": "postgres://q1food:q1food123@vskkccs8880cg0ggckccsgww:5432/q1food",
"version": "4.0.0-beta.463",
"created_at": "2026-02-18T17:50:56.000000Z",
"updated_at": "2026-02-18T17:50:56.000000Z"
},
{
"uuid": "owg8sogswosgskkw80g4cwk0",
"is_buildtime": true,
"is_coolify": false,
"is_literal": false,
"is_multiline": false,
"is_nixpacks": false,
"is_preview": true,
"is_really_required": false,
"is_required": false,
"is_runtime": true,
"is_shared": false,
"is_shown_once": false,
"key": "SECRET_KEY",
"order": null,
"real_value": "5c20242089aa95f9defdf2fda32041ff7a68d3116eba930886799a2634778429",
"value": "5c20242089aa95f9defdf2fda32041ff7a68d3116eba930886799a2634778429",
"version": "4.0.0-beta.463",
"created_at": "2026-02-18T17:51:30.000000Z",
"updated_at": "2026-02-18T17:51:30.000000Z"
},
{
"uuid": "xokgcsokgsw0kcooo0gsc8g4",
"is_buildtime": true,
"is_coolify": false,
"is_literal": false,
"is_multiline": false,
"is_nixpacks": false,
"is_preview": true,
"is_really_required": false,
"is_required": false,
"is_runtime": true,
"is_shared": false,
"is_shown_once": false,
"key": "DEFAULT_TENANT_SLUG",
"order": null,
"real_value": "burger-house",
"value": "burger-house",
"version": "4.0.0-beta.463",
"created_at": "2026-02-18T17:51:30.000000Z",
"updated_at": "2026-02-18T17:51:30.000000Z"
},
{
"uuid": "f0gsoswwc48owwsssc40kcg0",
"is_buildtime": true,
"is_coolify": false,
"is_literal": false,
"is_multiline": false,
"is_nixpacks": false,
"is_preview": true,
"is_really_required": false,
"is_required": false,
"is_runtime": true,
"is_shared": false,
"is_shown_once": false,
"key": "DEBUG",
"order": null,
"real_value": "False",
"value": "False",
"version": "4.0.0-beta.463",
"created_at": "2026-02-18T17:51:30.000000Z",
"updated_at": "2026-02-18T17:51:30.000000Z"
},
{
"uuid": "t8kcowkcw8kc08w4sc4scg0o",
"is_buildtime": true,
"is_coolify": false,
"is_literal": false,
"is_multiline": false,
"is_nixpacks": false,
"is_preview": true,
"is_really_required": false,
"is_required": false,
"is_runtime": true,
"is_shared": false,
"is_shown_once": false,
"key": "FRONTEND_URL",
"order": null,
"real_value": "http://dev.q1food.com",
"value": "http://dev.q1food.com",
"version": "4.0.0-beta.463",
"created_at": "2026-02-18T17:51:30.000000Z",
"updated_at": "2026-02-18T17:51:30.000000Z"
}
],
"Count": 10
}

View file

@ -0,0 +1,306 @@
[
{
"Id": "8afe956c6621feed2118c0337d858caa67353c64043825f541af366bffd8df36",
"Created": "2026-02-26T17:53:15.846797341Z",
"Path": "docker-entrypoint.sh",
"Args": [
"postgres"
],
"State": {
"Status": "running",
"Running": true,
"Paused": false,
"Restarting": false,
"OOMKilled": false,
"Dead": false,
"Pid": 675044,
"ExitCode": 0,
"Error": "",
"StartedAt": "2026-02-26T17:53:15.953077345Z",
"FinishedAt": "0001-01-01T00:00:00Z",
"Health": {
"Status": "healthy",
"FailingStreak": 0,
"Log": [
{
"Start": "2026-02-26T19:39:45.27346936+01:00",
"End": "2026-02-26T19:39:45.334808038+01:00",
"ExitCode": 0,
"Output": " ?column? \n----------\n 1\n(1 row)\n\n"
},
{
"Start": "2026-02-26T19:39:50.336390031+01:00",
"End": "2026-02-26T19:39:50.39413281+01:00",
"ExitCode": 0,
"Output": " ?column? \n----------\n 1\n(1 row)\n\n"
},
{
"Start": "2026-02-26T19:39:55.395526989+01:00",
"End": "2026-02-26T19:39:55.454693953+01:00",
"ExitCode": 0,
"Output": " ?column? \n----------\n 1\n(1 row)\n\n"
},
{
"Start": "2026-02-26T19:40:00.456136767+01:00",
"End": "2026-02-26T19:40:00.5222682+01:00",
"ExitCode": 0,
"Output": " ?column? \n----------\n 1\n(1 row)\n\n"
},
{
"Start": "2026-02-26T19:40:05.523786931+01:00",
"End": "2026-02-26T19:40:05.587212556+01:00",
"ExitCode": 0,
"Output": " ?column? \n----------\n 1\n(1 row)\n\n"
}
]
}
},
"Image": "sha256:87e04d274d186c7331d0e13c7c90c8b9f63b0d7ae94476c98a229a94d62c9745",
"ResolvConfPath": "/var/lib/docker/containers/8afe956c6621feed2118c0337d858caa67353c64043825f541af366bffd8df36/resolv.conf",
"HostnamePath": "/var/lib/docker/containers/8afe956c6621feed2118c0337d858caa67353c64043825f541af366bffd8df36/hostname",
"HostsPath": "/var/lib/docker/containers/8afe956c6621feed2118c0337d858caa67353c64043825f541af366bffd8df36/hosts",
"LogPath": "/var/lib/docker/containers/8afe956c6621feed2118c0337d858caa67353c64043825f541af366bffd8df36/8afe956c6621feed2118c0337d858caa67353c64043825f541af366bffd8df36-json.log",
"Name": "/nwwsc0skgkoko8wcwo4kcg48",
"RestartCount": 0,
"Driver": "overlay2",
"Platform": "linux",
"MountLabel": "",
"ProcessLabel": "",
"AppArmorProfile": "docker-default",
"ExecIDs": null,
"HostConfig": {
"Binds": [
"postgres-data-nwwsc0skgkoko8wcwo4kcg48:/var/lib/postgresql/data:rw"
],
"ContainerIDFile": "",
"LogConfig": {
"Type": "json-file",
"Config": {
"max-file": "3",
"max-size": "10m"
}
},
"NetworkMode": "coolify",
"PortBindings": {},
"RestartPolicy": {
"Name": "unless-stopped",
"MaximumRetryCount": 0
},
"AutoRemove": false,
"VolumeDriver": "",
"VolumesFrom": null,
"ConsoleSize": [
0,
0
],
"CapAdd": null,
"CapDrop": null,
"CgroupnsMode": "private",
"Dns": null,
"DnsOptions": null,
"DnsSearch": null,
"ExtraHosts": [],
"GroupAdd": null,
"IpcMode": "private",
"Cgroup": "",
"Links": null,
"OomScoreAdj": 0,
"PidMode": "",
"Privileged": false,
"PublishAllPorts": false,
"ReadonlyRootfs": false,
"SecurityOpt": null,
"UTSMode": "",
"UsernsMode": "",
"ShmSize": 67108864,
"Runtime": "runc",
"Isolation": "",
"CpuShares": 1024,
"Memory": 0,
"NanoCpus": 0,
"CgroupParent": "",
"BlkioWeight": 0,
"BlkioWeightDevice": null,
"BlkioDeviceReadBps": null,
"BlkioDeviceWriteBps": null,
"BlkioDeviceReadIOps": null,
"BlkioDeviceWriteIOps": null,
"CpuPeriod": 0,
"CpuQuota": 0,
"CpuRealtimePeriod": 0,
"CpuRealtimeRuntime": 0,
"CpusetCpus": "",
"CpusetMems": "",
"Devices": null,
"DeviceCgroupRules": null,
"DeviceRequests": null,
"MemoryReservation": 0,
"MemorySwap": 0,
"MemorySwappiness": null,
"OomKillDisable": null,
"PidsLimit": null,
"Ulimits": null,
"CpuCount": 0,
"CpuPercent": 0,
"IOMaximumIOps": 0,
"IOMaximumBandwidth": 0,
"MaskedPaths": [
"/proc/asound",
"/proc/acpi",
"/proc/kcore",
"/proc/keys",
"/proc/latency_stats",
"/proc/timer_list",
"/proc/timer_stats",
"/proc/sched_debug",
"/proc/scsi",
"/sys/firmware",
"/sys/devices/virtual/powercap"
],
"ReadonlyPaths": [
"/proc/bus",
"/proc/fs",
"/proc/irq",
"/proc/sys",
"/proc/sysrq-trigger"
]
},
"GraphDriver": {
"Data": {
"LowerDir": "/var/lib/docker/overlay2/dd65386c9a41e6e7354f1a82f4da93d48421b6575f6b9e59edb31af0f6b1de26-init/diff:/var/lib/docker/overlay2/0a265718672101db541aa24320b98998bc935b0cee87429594338df571249df3/diff:/var/lib/docker/overlay2/3dc9607c5b8e37e81b31fadceaf653b9089f4b2bb78265c7ba33226143ed8d03/diff:/var/lib/docker/overlay2/78b80257b40a5a9f35531da746370d7ab1aed338a0917950f98378fab40d89ba/diff:/var/lib/docker/overlay2/4d17595fc10acb563b13ee73de9bd3e44964d42346dfa75c5599365318783848/diff:/var/lib/docker/overlay2/28ddf9eebcca52388d473a18fd977a13d43863ecbf1f86e58422fd0ad72b0e46/diff:/var/lib/docker/overlay2/10f58ace3d2ae0cd391c4c6f2baf9a4c1f0ad6758fde28ee71d2a37d4995202b/diff:/var/lib/docker/overlay2/e7a92aa1f4bc76ec8a4b6c5a566f5377ac4255c194d6acd6dc3d8124d035dfe8/diff:/var/lib/docker/overlay2/bcf7b39249332918d4dc44a33945b5ea87f81d37e8308ae8d3c4b80b51ae640c/diff:/var/lib/docker/overlay2/0aec86904e63ea0ced26ee7d9be54cbbf01c372f8dace41e7f7a50281fb03d76/diff:/var/lib/docker/overlay2/2d40ae2b40315a0e1afa4809edb0eaf99f09d5a3d55bf87963a55ec5239a664b/diff:/var/lib/docker/overlay2/f0cc304b4212ea721e9539e4665b90bd9ef14ae6180e0eedab921077e139479c/diff",
"MergedDir": "/var/lib/docker/overlay2/dd65386c9a41e6e7354f1a82f4da93d48421b6575f6b9e59edb31af0f6b1de26/merged",
"UpperDir": "/var/lib/docker/overlay2/dd65386c9a41e6e7354f1a82f4da93d48421b6575f6b9e59edb31af0f6b1de26/diff",
"WorkDir": "/var/lib/docker/overlay2/dd65386c9a41e6e7354f1a82f4da93d48421b6575f6b9e59edb31af0f6b1de26/work"
},
"Name": "overlay2"
},
"Mounts": [
{
"Type": "volume",
"Name": "postgres-data-nwwsc0skgkoko8wcwo4kcg48",
"Source": "/var/lib/docker/volumes/postgres-data-nwwsc0skgkoko8wcwo4kcg48/_data",
"Destination": "/var/lib/postgresql/data",
"Driver": "local",
"Mode": "rw",
"RW": true,
"Propagation": ""
}
],
"Config": {
"Hostname": "8afe956c6621",
"Domainname": "",
"User": "",
"AttachStdin": false,
"AttachStdout": true,
"AttachStderr": true,
"ExposedPorts": {
"5432/tcp": {}
},
"Tty": false,
"OpenStdin": false,
"StdinOnce": false,
"Env": [
"POSTGRES_USER=sextando",
"PGUSER=sextando",
"POSTGRES_PASSWORD=sextando_dev_2026",
"POSTGRES_DB=sextando_dev",
"PATH=/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin",
"GOSU_VERSION=1.19",
"LANG=en_US.utf8",
"PG_MAJOR=16",
"PG_VERSION=16.12",
"PG_SHA256=b253ee949303ef5df00e24002600da4fb37e5ccfafa78718c6ea6a936b4d97f1",
"DOCKER_PG_LLVM_DEPS=llvm19-dev \t\tclang19",
"PGDATA=/var/lib/postgresql/data"
],
"Cmd": [
"postgres"
],
"Healthcheck": {
"Test": [
"CMD-SHELL",
"psql -U sextando -d sextando_dev -c 'SELECT 1' || exit 1"
],
"Interval": 5000000000,
"Timeout": 5000000000,
"StartPeriod": 5000000000,
"Retries": 10
},
"Image": "postgres:16-alpine",
"Volumes": {
"/var/lib/postgresql/data": {}
},
"WorkingDir": "/",
"Entrypoint": [
"docker-entrypoint.sh"
],
"OnBuild": null,
"Labels": {
"com.docker.compose.config-hash": "6ffdf8a2986ca4655beb65b3299c1e79899feee09f712b44afec2f3e3bab8f7d",
"com.docker.compose.container-number": "1",
"com.docker.compose.depends_on": "",
"com.docker.compose.image": "sha256:87e04d274d186c7331d0e13c7c90c8b9f63b0d7ae94476c98a229a94d62c9745",
"com.docker.compose.oneoff": "False",
"com.docker.compose.project": "nwwsc0skgkoko8wcwo4kcg48",
"com.docker.compose.project.config_files": "/data/coolify/databases/nwwsc0skgkoko8wcwo4kcg48/docker-compose.yml",
"com.docker.compose.project.working_dir": "/data/coolify/databases/nwwsc0skgkoko8wcwo4kcg48",
"com.docker.compose.service": "nwwsc0skgkoko8wcwo4kcg48",
"com.docker.compose.version": "5.0.2",
"coolify.database.subType": "standalone-postgresql",
"coolify.databaseId": "7",
"coolify.environmentName": "production",
"coolify.managed": "true",
"coolify.projectName": "shared",
"coolify.resourceName": "sextando-dev",
"coolify.serviceName": "sextando-dev",
"coolify.type": "database"
},
"StopSignal": "SIGINT"
},
"NetworkSettings": {
"Bridge": "",
"SandboxID": "32f3b265999e3d61073623748241ebfa0d16313c6f73c21f5fd0849361f9b4cd",
"SandboxKey": "/var/run/docker/netns/32f3b265999e",
"Ports": {
"5432/tcp": null
},
"HairpinMode": false,
"LinkLocalIPv6Address": "",
"LinkLocalIPv6PrefixLen": 0,
"SecondaryIPAddresses": null,
"SecondaryIPv6Addresses": null,
"EndpointID": "",
"Gateway": "",
"GlobalIPv6Address": "",
"GlobalIPv6PrefixLen": 0,
"IPAddress": "",
"IPPrefixLen": 0,
"IPv6Gateway": "",
"MacAddress": "",
"Networks": {
"coolify": {
"IPAMConfig": null,
"Links": null,
"Aliases": [
"nwwsc0skgkoko8wcwo4kcg48",
"nwwsc0skgkoko8wcwo4kcg48"
],
"MacAddress": "02:42:0a:00:01:0e",
"DriverOpts": null,
"NetworkID": "25f7b240f61e0d170ed727f55f2ea8959d9f603fd90fe1d73a02021f29d421e1",
"EndpointID": "a955c93e997b9ebdac0355e371274b0b691f76c4c6e848409ca758f6162c0f60",
"Gateway": "10.0.1.1",
"IPAddress": "10.0.1.14",
"IPPrefixLen": 24,
"IPv6Gateway": "fde4:cfdd:2ecd::1",
"GlobalIPv6Address": "fde4:cfdd:2ecd::e",
"GlobalIPv6PrefixLen": 64,
"DNSNames": [
"nwwsc0skgkoko8wcwo4kcg48",
"8afe956c6621"
]
}
}
}
}
]

View file

@ -0,0 +1,48 @@
The files belonging to this database system will be owned by user "postgres".
This user must also own the server process.
The database cluster will be initialized with locale "en_US.utf8".
The default database encoding has accordingly been set to "UTF8".
The default text search configuration will be set to "english".
Data page checksums are disabled.
fixing permissions on existing directory /var/lib/postgresql/data ... ok
creating subdirectories ... ok
selecting dynamic shared memory implementation ... posix
selecting default max_connections ... 100
selecting default shared_buffers ... 128MB
selecting default time zone ... UTC
creating configuration files ... ok
running bootstrap script ... ok
performing post-bootstrap initialization ... ok
syncing data to disk ... ok
Success. You can now start the database server using:
pg_ctl -D /var/lib/postgresql/data -l logfile start
waiting for server to start....2026-02-26 17:53:19.068 UTC [41] LOG: starting PostgreSQL 16.12 on x86_64-pc-linux-musl, compiled by gcc (Alpine 15.2.0) 15.2.0, 64-bit
2026-02-26 17:53:19.070 UTC [41] LOG: listening on Unix socket "/var/run/postgresql/.s.PGSQL.5432"
2026-02-26 17:53:19.076 UTC [44] LOG: database system was shut down at 2026-02-26 17:53:18 UTC
2026-02-26 17:53:19.085 UTC [41] LOG: database system is ready to accept connections
done
server started
CREATE DATABASE
/usr/local/bin/docker-entrypoint.sh: ignoring /docker-entrypoint-initdb.d/*
waiting for server to shut down....2026-02-26 17:53:19.271 UTC [41] LOG: received fast shutdown request
2026-02-26 17:53:19.276 UTC [41] LOG: aborting any active transactions
2026-02-26 17:53:19.280 UTC [41] LOG: background worker "logical replication launcher" (PID 47) exited with exit code 1
2026-02-26 17:53:19.282 UTC [42] LOG: shutting down
2026-02-26 17:53:19.303 UTC [42] LOG: checkpoint starting: shutdown immediate
2026-02-26 17:53:19.364 UTC [42] LOG: checkpoint complete: wrote 926 buffers (5.7%); 0 WAL file(s) added, 0 removed, 0 recycled; write=0.027 s, sync=0.032 s, total=0.082 s; sync files=301, longest=0.002 s, average=0.001 s; distance=4272 kB, estimate=4272 kB; lsn=0/191E938, redo lsn=0/191E938
2026-02-26 17:53:19.377 UTC [41] LOG: database system is shut down
done
server stopped
PostgreSQL init process complete; ready for start up.

BIN
dev-scripts/cf_result.txt Normal file

Binary file not shown.

View file

@ -0,0 +1,28 @@
Checking Rede5 Account...
Found zone q1food.com with ID 70cdac5cc9787719d548ac6d74c98896 in account yamamoto@rede5.com.br
DNS Records for dev.q1food.com:
name type conten
t
---- ---- ------
dev.q1food.com A 185...
DNS Records for q1food.com:
name type content
---- ---- -------
q1food.com A 185.194...
q1food.com A 177.136...
q1food.com MX everest...
q1food.com MX everest...
q1food.com NS ns3.val...
q1food.com NS ns2.val...
q1food.com NS ns1.val...
q1food.com NS ns4.val...
q1food.com TXT "v=spf1...
Checking Inventcloud Account...
Zone q1food.com not found in account tiago.ribeiro@inventcloud.com.br.

55
dev-scripts/check_cf.ps1 Normal file
View file

@ -0,0 +1,55 @@
$tokenRede5 = '5dcfd89a9d4ec330dede0d4074a518f26818e'
$emailRede5 = 'yamamoto@rede5.com.br'
$tokenInvent = '7ae5565ab2dcdfdfdd66efb1105e27d18d186'
$emailInvent = 'tiago.ribeiro@inventcloud.com.br'
function Check-Cloudflare {
param($email, $token)
$headers = @{
"X-Auth-Email" = $email
"X-Auth-Key" = $token
"Content-Type" = "application/json"
}
try {
$zonesResponse = Invoke-RestMethod -Uri "https://api.cloudflare.com/client/v4/zones?per_page=50" -Headers $headers -Method Get
$found = $false
foreach ($zone in $zonesResponse.result) {
if ($zone.name.Contains('q1food.com')) {
$found = $true
Write-Host "Found zone $($zone.name) with ID $($zone.id) in account $email"
$dnsUrl = "https://api.cloudflare.com/client/v4/zones/$($zone.id)/dns_records?name=dev.q1food.com"
$dnsResponse = Invoke-RestMethod -Uri $dnsUrl -Headers $headers -Method Get
if ($dnsResponse.result) {
Write-Host "DNS Records for dev.q1food.com:"
$dnsResponse.result | Select-Object name, type, content, proxied | Format-Table -AutoSize
} else {
Write-Host "No DNS records found for dev.q1food.com in this zone."
}
# Check root domain as well just in case
$dnsUrlRoot = "https://api.cloudflare.com/client/v4/zones/$($zone.id)/dns_records?name=q1food.com"
$dnsResponseRoot = Invoke-RestMethod -Uri $dnsUrlRoot -Headers $headers -Method Get
if ($dnsResponseRoot.result) {
Write-Host "DNS Records for q1food.com:"
$dnsResponseRoot.result | Select-Object name, type, content, proxied | Format-Table -AutoSize
}
}
}
if (-not $found) {
Write-Host "Zone q1food.com not found in account $email."
}
} catch {
Write-Host "Error checking account $email : $($_.Exception.Message)"
}
}
Write-Host "Checking Rede5 Account..."
Check-Cloudflare -email $emailRede5 -token $tokenRede5
Write-Host ""
Write-Host "Checking Inventcloud Account..."
Check-Cloudflare -email $emailInvent -token $tokenInvent

13
dev-scripts/check_cf2.ps1 Normal file
View file

@ -0,0 +1,13 @@
$tokenRede5 = '5dcfd89a9d4ec330dede0d4074a518f26818e'
$emailRede5 = 'yamamoto@rede5.com.br'
$headers = @{
"X-Auth-Email" = $emailRede5
"X-Auth-Key" = $tokenRede5
"Content-Type" = "application/json"
}
$dnsUrl = "https://api.cloudflare.com/client/v4/zones/70cdac5cc9787719d548ac6d74c98896/dns_records?name=dev.q1food.com"
$dnsResponse = Invoke-RestMethod -Uri $dnsUrl -Headers $headers -Method Get
$dnsResponse.result | Select-Object name, content, proxied | ConvertTo-Json

12
dev-scripts/check_op.ps1 Normal file
View file

@ -0,0 +1,12 @@
$token = Get-Content 'c:\Users\Administrator\.ssh\coolify-redbull-token'
$baseUrl = "https://redbull.rede5.com.br/api/v1"
Write-Host "--- APLICACOES ---"
$appsResponse = Invoke-RestMethod -Uri "$baseUrl/applications" -Headers @{Authorization = "Bearer $token" } -Method Get
$apps = $appsResponse | Where-Object { $_.name -match 'open' }
$apps | Select-Object name, status, uuid | Format-Table -AutoSize
Write-Host "--- SERVICOS ---"
$srvResponse = Invoke-RestMethod -Uri "$baseUrl/services" -Headers @{Authorization = "Bearer $token" } -Method Get
$srvs = $srvResponse | Where-Object { $_.name -match 'open' }
$srvs | Select-Object name, status, uuid | Format-Table -AutoSize

View file

@ -0,0 +1,7 @@
$token = Get-Content 'c:\Users\Administrator\.ssh\coolify-redbull-token'
$baseUrl = "https://redbull.rede5.com.br/api/v1"
$serviceUuid = "cs80o4sgo440gkwkogo4c44k"
Write-Host "Checking service status..."
$response = Invoke-RestMethod -Uri "$baseUrl/services/$serviceUuid" -Headers @{Authorization = "Bearer $token" } -Method Get
Write-Host "Status: $($response.status)"

View file

@ -0,0 +1,17 @@
At C:\dev\deploy_sh.ps1:6
char:33
+ ssh redbull "cat >
/tmp/run.sh" <
c:\dev\run.sh
+
~
The '<' operator is
reserved for future use.
+ CategoryInfo
: ParserError: (:)
[], ParentContainsEr
rorRecordException
+ FullyQualifiedError
Id : RedirectionNotSu
pported

View file

@ -0,0 +1,20 @@
2026-02-28 10:49:09 App\Jobs\ServerStorageCheckJob ................. RUNNING
2026-02-28 10:49:09 App\Jobs\ServerStorageCheckJob ............ 13.00ms DONE
2026-02-28 10:49:09 App\Jobs\ConnectProxyToNetworksJob ............. RUNNING
2026-02-28 10:49:10 App\Jobs\ConnectProxyToNetworksJob ....... 709.28ms DONE
2026-02-28 10:50:00 Running ['artisan' horizon:snapshot] ........... 1s DONE
??? '/usr/local/bin/php' 'artisan' horizon:snapshot > '/dev/null' 2>&1
2026-02-28 10:50:02 Running [App\Jobs\CleanupInstanceStuffsJob] 21.53ms DONE
2026-02-28 10:50:02 Running [App\Jobs\ServerManagerJob] ........ 2.07ms DONE
2026-02-28 10:50:02 Running [App\Jobs\ScheduledJobManager] ..... 1.20ms DONE
2026-02-28 10:50:02 Running ['artisan' uploads:clear] .............. 1s DONE
??? '/usr/local/bin/php' 'artisan' uploads:clear > '/dev/null' 2>&1
2026-02-28 10:50:03 App\Jobs\ServerManagerJob ...................... RUNNING
2026-02-28 10:50:03 App\Jobs\ServerManagerJob ................ 154.53ms DONE
2026-02-28 10:50:03 App\Jobs\ScheduledJobManager ................... RUNNING
2026-02-28 10:50:03 App\Jobs\ScheduledJobManager .............. 24.58ms DONE
2026-02-28 10:50:03 App\Jobs\CleanupInstanceStuffsJob .............. RUNNING
2026-02-28 10:50:03 App\Jobs\CleanupInstanceStuffsJob ......... 23.69ms DONE
2026-02-28 10:50:03 App\Jobs\ServerConnectionCheckJob .............. RUNNING
2026-02-28 10:50:04 App\Jobs\ServerConnectionCheckJob .............. 1s DONE

Binary file not shown.

View file

@ -0,0 +1,20 @@
2026-02-28 13:30:02 App\Jobs\ServerManagerJob ...................... RUNNING
2026-02-28 13:30:02 App\Jobs\ServerManagerJob ................. 27.55ms DONE
2026-02-28 13:30:02 App\Jobs\ScheduledJobManager ................... RUNNING
2026-02-28 13:30:02 App\Jobs\ScheduledJobManager .............. 19.86ms DONE
2026-02-28 13:30:02 App\Jobs\CleanupInstanceStuffsJob .............. RUNNING
2026-02-28 13:30:02 App\Jobs\CleanupInstanceStuffsJob ......... 17.09ms DONE
2026-02-28 13:30:02 App\Jobs\ServerConnectionCheckJob .............. RUNNING
2026-02-28 13:30:03 App\Jobs\ServerConnectionCheckJob ........ 993.53ms DONE
2026-02-28 13:30:09 App\Jobs\PushServerUpdateJob ................... RUNNING
2026-02-28 13:30:09 App\Jobs\PushServerUpdateJob ............. 151.00ms DONE
2026-02-28 13:30:09 App\Jobs\ServerStorageCheckJob ................. RUNNING
2026-02-28 13:30:09 App\Jobs\ServerStorageCheckJob ............ 10.29ms DONE
2026-02-28 13:30:09 App\Jobs\ConnectProxyToNetworksJob ............. RUNNING
2026-02-28 13:30:10 App\Jobs\ConnectProxyToNetworksJob ....... 707.37ms DONE
2026-02-28 13:30:16 App\Actions\Service\StartService ............... RUNNING
2026-02-28 13:30:18 App\Actions\Service\StartService ............... 1s DONE
2026-02-28 13:30:18 App\Jobs\ServerFilesFromServerJob .............. RUNNING
2026-02-28 13:30:18 App\Jobs\ServerFilesFromServerJob ........ 439.93ms DONE
2026-02-28 13:30:18 App\Jobs\CoolifyTask ........................... RUNNING

File diff suppressed because one or more lines are too long

View file

@ -0,0 +1 @@
OCI runtime exec failed: exec failed: unable to start container process: exec: "sqlite3": executable file not found in $PATH: unknown

View file

@ -0,0 +1,4 @@
{
"uuid": "kssgo8ccgkos0kw0c0owgk8o",
"internal_db_url": "postgres://coolify:Shared%23User%23Password%23123%214@kssgo8ccgkos0kw0c0owgk8o:5432/postgres_db"
}

27
dev-scripts/create_db.ps1 Normal file
View file

@ -0,0 +1,27 @@
$token = Get-Content 'c:\Users\Administrator\.ssh\coolify-redbull-token'
$baseUrl = "https://redbull.rede5.com.br/api/v1"
$body = @{
server_uuid = "m844o4gkwkwcc0k48swgs8c8"
project_uuid = "t0c4ss0wkcgwg48g088wkwgs"
environment_name = "production"
name = "postgres-db"
description = "Shared PostgreSQL Database"
postgres_user = "coolify"
postgres_password = "Shared#User#Password#123!4"
postgres_db = "postgres_db"
image = "postgres:16"
} | ConvertTo-Json
Write-Host "Creating Database..."
try {
$response = Invoke-RestMethod -Uri "$baseUrl/databases/postgresql" -Headers @{Authorization = "Bearer $token" } -Method Post -Body $body -ContentType "application/json"
$response | ConvertTo-Json -Depth 5 | Out-File -Encoding ASCII c:\dev\create_db.json
Write-Host "Success!"
}
catch {
Write-Host "Error: $($_.Exception.Message)"
if ($_.ErrorDetails) {
Write-Host "Details: $($_.ErrorDetails.Message)"
}
}

BIN
dev-scripts/curl_out.txt Normal file

Binary file not shown.

View file

@ -0,0 +1,19 @@
HTTP/2 302
alt-svc: h3=":443"; ma=2592000
cache-control: no-cache
content-security-policy: default-src 'self'; base-uri 'self'; connect-src 'self' https://start.openproject.com; font-src data: 'self'; form-action 'self'; frame-ancestors 'self'; frame-src 'self' https://player.vimeo.com https://releases.openproject.com/v1/check.svg; img-src * data: blob:; media-src 'self'; object-src https://releases.openproject.com/v1/check.svg; script-src 'strict-dynamic'; style-src 'unsafe-inline' 'self'
content-type: text/html; charset=utf-8
location: https://projetos.rede5.com.br/login?back_url=https%3A%2F%2Fprojetos.rede5.com.br%2F
referrer-policy: origin-when-cross-origin
set-cookie: _open_project_session=f123b4af868bfff6616b156d5a72ba06; path=/; secure; HttpOnly; SameSite=Lax
strict-transport-security: max-age=63072000; includeSubDomains
vary: Accept-Encoding
x-content-type-options: nosniff
x-download-options: noopen
x-frame-options: SAMEORIGIN
x-permitted-cross-domain-policies: none
x-request-id: 0d6cb5de-13ec-426d-b5ef-aa5686e702ca
x-runtime: 0.259853
x-xss-protection: 1; mode=block
date: Sat, 28 Feb 2026 14:26:05 GMT

1
dev-scripts/db_logs.txt Normal file
View file

@ -0,0 +1 @@
OCI runtime exec failed: exec failed: unable to start container process: exec: "bash": executable file not found in $PATH: unknown

View file

95
dev-scripts/dc.txt Normal file
View file

@ -0,0 +1,95 @@
services:
openproject:
image: 'openproject/community:14'
restart: unless-stopped
ports:
- '8080:80'
environment:
DATABASE_URL: 'postgresql://openproject:openproject@db:5432/openproject'
SECRET_KEY_BASE: mysecret
COOLIFY_RESOURCE_UUID: cs80o4sgo440gkwkogo4c44k
COOLIFY_CONTAINER_NAME: openproject-cs80o4sgo440gkwkogo4c44k
COOLIFY_FQDN: projetos.rede5.com.br
COOLIFY_URL: 'https://projetos.rede5.com.br'
SERVICE_NAME_OPENPROJECT: openproject
SERVICE_NAME_DB: db
volumes:
- 'cs80o4sgo440gkwkogo4c44k_openproject-data:/var/lib/openproject'
container_name: openproject-cs80o4sgo440gkwkogo4c44k
labels:
- coolify.managed=true
- coolify.version=4.0.0-beta.463
- coolify.serviceId=6
- coolify.type=service
- coolify.name=openproject-cs80o4sgo440gkwkogo4c44k
- coolify.resourceName=openproject
- coolify.projectName=openproject
- coolify.serviceName=openproject
- coolify.environmentName=production
- coolify.pullRequestId=0
- coolify.service.subId=19
- coolify.service.subType=application
- coolify.service.subName=openproject
- traefik.enable=true
- traefik.http.middlewares.gzip.compress=true
- traefik.http.middlewares.redirect-to-https.redirectscheme.scheme=https
- traefik.http.routers.http-0-cs80o4sgo440gkwkogo4c44k-openproject.entryPoints=http
- traefik.http.routers.http-0-cs80o4sgo440gkwkogo4c44k-openproject.middlewares=redirect-to-https
- 'traefik.http.routers.http-0-cs80o4sgo440gkwkogo4c44k-openproject.rule=Host(`projetos.rede5.com.br`) && PathPrefix(`/`)'
- traefik.http.routers.https-0-cs80o4sgo440gkwkogo4c44k-openproject.entryPoints=https
- traefik.http.routers.https-0-cs80o4sgo440gkwkogo4c44k-openproject.middlewares=gzip
- 'traefik.http.routers.https-0-cs80o4sgo440gkwkogo4c44k-openproject.rule=Host(`projetos.rede5.com.br`) && PathPrefix(`/`)'
- traefik.http.routers.https-0-cs80o4sgo440gkwkogo4c44k-openproject.tls.certresolver=letsencrypt
- traefik.http.routers.https-0-cs80o4sgo440gkwkogo4c44k-openproject.tls=true
- 'caddy_0.encode=zstd gzip'
- 'caddy_0.handle_path.0_reverse_proxy={{upstreams}}'
- 'caddy_0.handle_path=/*'
- caddy_0.header=-Server
- 'caddy_0.try_files={path} /index.html /index.php'
- 'caddy_0=https://projetos.rede5.com.br'
- caddy_ingress_network=cs80o4sgo440gkwkogo4c44k
networks:
cs80o4sgo440gkwkogo4c44k: null
env_file:
- .env
db:
image: 'postgres:16'
restart: unless-stopped
environment:
POSTGRES_DB: openproject
POSTGRES_USER: openproject
POSTGRES_PASSWORD: openproject
COOLIFY_RESOURCE_UUID: cs80o4sgo440gkwkogo4c44k
COOLIFY_CONTAINER_NAME: db-cs80o4sgo440gkwkogo4c44k
SERVICE_NAME_OPENPROJECT: openproject
SERVICE_NAME_DB: db
volumes:
- 'cs80o4sgo440gkwkogo4c44k_postgres-data:/var/lib/postgresql/data'
container_name: db-cs80o4sgo440gkwkogo4c44k
labels:
- coolify.managed=true
- coolify.version=4.0.0-beta.463
- coolify.serviceId=6
- coolify.type=service
- coolify.name=db-cs80o4sgo440gkwkogo4c44k
- coolify.resourceName=openproject
- coolify.projectName=openproject
- coolify.serviceName=db
- coolify.environmentName=production
- coolify.pullRequestId=0
- coolify.service.subId=3
- coolify.service.subType=database
- coolify.service.subName=db
networks:
cs80o4sgo440gkwkogo4c44k: null
env_file:
- .env
volumes:
cs80o4sgo440gkwkogo4c44k_openproject-data:
name: cs80o4sgo440gkwkogo4c44k_openproject-data
cs80o4sgo440gkwkogo4c44k_postgres-data:
name: cs80o4sgo440gkwkogo4c44k_postgres-data
networks:
cs80o4sgo440gkwkogo4c44k:
name: cs80o4sgo440gkwkogo4c44k
external: true

View file

View file

@ -0,0 +1,7 @@
$script = @"
#!/bin/bash
docker exec coolify-db psql -U coolify -d coolify -t -c "SELECT logs FROM application_deployments WHERE application_id = (SELECT id FROM applications WHERE uuid='eosgwscc4g044c884k0ws4gc') ORDER BY created_at DESC LIMIT 1;" > /tmp/out.txt
"@
Set-Content "c:\dev\run.sh" -Value $script -Encoding ASCII
ssh redbull "cat > /tmp/run.sh" < c:\dev\run.sh
ssh redbull "chmod +x /tmp/run.sh && /tmp/run.sh && cat /tmp/out.txt"

Binary file not shown.

View file

@ -0,0 +1,61 @@
services:
openproject:
image: 'openproject/openproject:14'
restart: unless-stopped
environment:
DATABASE_URL: 'postgresql://coolify:Shared%23User%23Password%23123%214@kssgo8ccgkos0kw0c0owgk8o:5432/postgres_db'
SECRET_KEY_BASE: mysecret
COOLIFY_RESOURCE_UUID: cs80o4sgo440gkwkogo4c44k
COOLIFY_CONTAINER_NAME: openproject-cs80o4sgo440gkwkogo4c44k
COOLIFY_FQDN: projetos.rede5.com.br
COOLIFY_URL: 'https://projetos.rede5.com.br'
SERVICE_NAME_OPENPROJECT: openproject
volumes:
- 'cs80o4sgo440gkwkogo4c44k_openproject-data:/var/lib/openproject'
networks:
cs80o4sgo440gkwkogo4c44k: null
kssgo8ccgkos0kw0c0owgk8o: null
container_name: openproject-cs80o4sgo440gkwkogo4c44k
labels:
- coolify.managed=true
- coolify.version=4.0.0-beta.463
- coolify.serviceId=6
- coolify.type=service
- coolify.name=openproject-cs80o4sgo440gkwkogo4c44k
- coolify.resourceName=openproject
- coolify.projectName=openproject
- coolify.serviceName=openproject
- coolify.environmentName=production
- coolify.pullRequestId=0
- coolify.service.subId=19
- coolify.service.subType=application
- coolify.service.subName=openproject
- traefik.enable=true
- traefik.http.middlewares.gzip.compress=true
- traefik.http.middlewares.redirect-to-https.redirectscheme.scheme=https
- traefik.http.routers.http-0-cs80o4sgo440gkwkogo4c44k-openproject.entryPoints=http
- traefik.http.routers.http-0-cs80o4sgo440gkwkogo4c44k-openproject.middlewares=redirect-to-https
- 'traefik.http.routers.http-0-cs80o4sgo440gkwkogo4c44k-openproject.rule=Host(`projetos.rede5.com.br`) && PathPrefix(`/`)'
- traefik.http.routers.https-0-cs80o4sgo440gkwkogo4c44k-openproject.entryPoints=https
- traefik.http.routers.https-0-cs80o4sgo440gkwkogo4c44k-openproject.middlewares=gzip
- 'traefik.http.routers.https-0-cs80o4sgo440gkwkogo4c44k-openproject.rule=Host(`projetos.rede5.com.br`) && PathPrefix(`/`)'
- traefik.http.routers.https-0-cs80o4sgo440gkwkogo4c44k-openproject.tls.certresolver=letsencrypt
- traefik.http.routers.https-0-cs80o4sgo440gkwkogo4c44k-openproject.tls=true
- 'caddy_0.encode=zstd gzip'
- 'caddy_0.handle_path.0_reverse_proxy={{upstreams}}'
- 'caddy_0.handle_path=/*'
- caddy_0.header=-Server
- 'caddy_0.try_files={path} /index.html /index.php'
- 'caddy_0=https://projetos.rede5.com.br'
- caddy_ingress_network=cs80o4sgo440gkwkogo4c44k
env_file:
- .env
volumes:
cs80o4sgo440gkwkogo4c44k_openproject-data:
name: cs80o4sgo440gkwkogo4c44k_openproject-data
networks:
cs80o4sgo440gkwkogo4c44k:
name: cs80o4sgo440gkwkogo4c44k
external: true
kssgo8ccgkos0kw0c0owgk8o:
external: true

23
dev-scripts/docker_ps.txt Normal file
View file

@ -0,0 +1,23 @@
g8w440g0w0oowo8skss440wk-165436945654 Up 37 minutes
coolify-sentinel Up 18 hours (healthy)
q4w48gos8cgssso00o8w8gck-114957702616 Up 2 days (healthy)
iw4sow8s0kkg4cccsk08gsoo-102729139578 Up 2 days
ao8g40scws0w4cgo8coc8o40-022928730793 Up 2 days
bookstack-ogs4okgoosk48cswoo0s4k84 Up 2 days
hg48wkw4wggwsswcwc8sooo4-184835399749 Up 2 days
mariadb-ogs4okgoosk48cswoo0s4k84 Up 2 days
vskkccs8880cg0ggckccsgww Up 8 days (healthy)
vaultwarden-h8wg0gogw44swosgk8wgc8cs Up 9 seconds (health: starting)
sg0co4s44cs48o4kc4cgg844 Up 8 days (healthy)
l4g4cc884gc04kg8s480gs48-030245213905 Up 9 days
ko0kkw4kw8g80scksg8sk0wc-030309160239 Up 9 days (healthy)
s4kskw08400wcw8g40ossggo-030142033398 Up 9 days
ecso4woo4woo0ks84888k8ck-030128369577 Up 9 days
forgejo-redbull Up 9 days
e8ogwk008c8s8sok8wc00ow0 Up 10 days (healthy)
bgws48os8wgwk08o48wg8k80 Up 10 days (healthy)
coolify-proxy Up 9 days (healthy)
coolify Up 9 days (healthy)
coolify-redis Up 10 days (healthy)
coolify-realtime Up 10 days (healthy)
coolify-db Up 10 days (healthy)

View file

@ -0,0 +1,24 @@
nwwsc0skgkoko8wcwo4kcg48
g8w440g0w0oowo8skss440wk-165436945654
coolify-sentinel
q4w48gos8cgssso00o8w8gck-114957702616
iw4sow8s0kkg4cccsk08gsoo-102729139578
ao8g40scws0w4cgo8coc8o40-022928730793
bookstack-ogs4okgoosk48cswoo0s4k84
hg48wkw4wggwsswcwc8sooo4-184835399749
mariadb-ogs4okgoosk48cswoo0s4k84
vskkccs8880cg0ggckccsgww
vaultwarden-h8wg0gogw44swosgk8wgc8cs
sg0co4s44cs48o4kc4cgg844
l4g4cc884gc04kg8s480gs48-030245213905
ko0kkw4kw8g80scksg8sk0wc-030309160239
s4kskw08400wcw8g40ossggo-030142033398
ecso4woo4woo0ks84888k8ck-030128369577
forgejo-redbull
e8ogwk008c8s8sok8wc00ow0
bgws48os8wgwk08o48wg8k80
coolify-proxy
coolify
coolify-redis
coolify-realtime
coolify-db

BIN
dev-scripts/dt.txt Normal file

Binary file not shown.

69
dev-scripts/dt_ascii.txt Normal file
View file

@ -0,0 +1,69 @@
List of relations
Schema | Name | Type | Owner
--------+--------------------------------------+-------+---------
public | activity_log | table | coolify
public | additional_destinations | table | coolify
public | application_deployment_queues | table | coolify
public | application_previews | table | coolify
public | application_settings | table | coolify
public | applications | table | coolify
public | cloud_init_scripts | table | coolify
public | cloud_provider_tokens | table | coolify
public | discord_notification_settings | table | coolify
public | docker_cleanup_executions | table | coolify
public | email_notification_settings | table | coolify
public | environment_variables | table | coolify
public | environments | table | coolify
public | failed_jobs | table | coolify
public | github_apps | table | coolify
public | gitlab_apps | table | coolify
public | instance_settings | table | coolify
public | local_file_volumes | table | coolify
public | local_persistent_volumes | table | coolify
public | migrations | table | coolify
public | oauth_settings | table | coolify
public | password_reset_tokens | table | coolify
public | personal_access_tokens | table | coolify
public | private_keys | table | coolify
public | project_settings | table | coolify
public | projects | table | coolify
public | pushover_notification_settings | table | coolify
public | s3_storages | table | coolify
public | scheduled_database_backup_executions | table | coolify
public | scheduled_database_backups | table | coolify
public | scheduled_task_executions | table | coolify
public | scheduled_tasks | table | coolify
public | server_settings | table | coolify
public | servers | table | coolify
public | service_applications | table | coolify
public | service_databases | table | coolify
public | services | table | coolify
public | sessions | table | coolify
public | shared_environment_variables | table | coolify
public | slack_notification_settings | table | coolify
public | ssl_certificates | table | coolify
public | standalone_clickhouses | table | coolify
public | standalone_dockers | table | coolify
public | standalone_dragonflies | table | coolify
public | standalone_keydbs | table | coolify
public | standalone_mariadbs | table | coolify
public | standalone_mongodbs | table | coolify
public | standalone_mysqls | table | coolify
public | standalone_postgresqls | table | coolify
public | standalone_redis | table | coolify
public | subscriptions | table | coolify
public | swarm_dockers | table | coolify
public | taggables | table | coolify
public | tags | table | coolify
public | team_invitations | table | coolify
public | team_user | table | coolify
public | teams | table | coolify
public | telegram_notification_settings | table | coolify
public | telescope_entries | table | coolify
public | telescope_entries_tags | table | coolify
public | telescope_monitoring | table | coolify
public | user_changelog_reads | table | coolify
public | users | table | coolify
public | webhook_notification_settings | table | coolify
(64 rows)

0
dev-scripts/dt_res.txt Normal file
View file

View file

@ -0,0 +1,45 @@
exception
-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
RuntimeException: Image openproject/community:14 Pulling +
Image openproject/community:14 Error manifest for openproject/community:14 not found: manifest unknown: manifest unknown +
Error response from daemon: manifest for openproject/community:14 not found: manifest unknown: manifest unknown +
in /var/www/html/app/Actions/CoolifyTask/RunRemoteProcess.php:118 +
Stack trace: +
#0 /var/www/html/app/Jobs/CoolifyTask.php(60): App\Actions\CoolifyTask\RunRemoteProcess->__invoke() +
#1 /var/www/html/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(36): App\Jobs\CoolifyTask->handle() +
#2 /var/www/html/vendor/laravel/framework/src/Illuminate/Container/Util.php(43): Illuminate\Container\BoundMethod::{closure:Illuminate\Container\BoundMethod::call():35}() +
#3 /var/www/html/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(96): Illuminate\Container\Util::unwrapIfClosure() +
#4 /var/www/html/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(35): Illuminate\Container\BoundMethod::callBoundMethod() +
#5 /var/www/html/vendor/laravel/framework/src/Illuminate/Container/Container.php(799): Illuminate\Container\BoundMethod::call() +
#6 /var/www/html/vendor/laravel/framework/src/Illuminate/Bus/Dispatcher.php(129): Illuminate\Container\Container->call() +
#7 /var/www/html/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(180): Illuminate\Bus\Dispatcher->{closure:Illuminate\Bus\Dispatcher::dispatchNow():126}() +
#8 /var/www/html/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(137): Illuminate\Pipeline\Pipeline->{closure:Illuminate\Pipeline\Pipeline::prepareDestination():178}() +
#9 /var/www/html/vendor/laravel/framework/src/Illuminate/Bus/Dispatcher.php(133): Illuminate\Pipeline\Pipeline->then() +
#10 /var/www/html/vendor/laravel/framework/src/Illuminate/Queue/CallQueuedHandler.php(134): Illuminate\Bus\Dispatcher->dispatchNow() +
#11 /var/www/html/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(180): Illuminate\Queue\CallQueuedHandler->{closure:Illuminate\Queue\CallQueuedHandler::dispatchThroughMiddleware():127}()+
#12 /var/www/html/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(137): Illuminate\Pipeline\Pipeline->{closure:Illuminate\Pipeline\Pipeline::prepareDestination():178}() +
#13 /var/www/html/vendor/laravel/framework/src/Illuminate/Queue/CallQueuedHandler.php(127): Illuminate\Pipeline\Pipeline->then() +
#14 /var/www/html/vendor/laravel/framework/src/Illuminate/Queue/CallQueuedHandler.php(68): Illuminate\Queue\CallQueuedHandler->dispatchThroughMiddleware() +
#15 /var/www/html/vendor/laravel/framework/src/Illuminate/Queue/Jobs/Job.php(102): Illuminate\Queue\CallQueuedHandler->call() +
#16 /var/www/html/vendor/laravel/framework/src/Illuminate/Queue/Worker.php(485): Illuminate\Queue\Jobs\Job->fire() +
#17 /var/www/html/vendor/laravel/framework/src/Illuminate/Queue/Worker.php(435): Illuminate\Queue\Worker->process() +
#18 /var/www/html/vendor/laravel/framework/src/Illuminate/Queue/Worker.php(201): Illuminate\Queue\Worker->runJob() +
#19 /var/www/html/vendor/laravel/framework/src/Illuminate/Queue/Console/WorkCommand.php(148): Illuminate\Queue\Worker->daemon() +
#20 /var/www/html/vendor/laravel/framework/src/Illuminate/Queue/Console/WorkCommand.php(131): Illuminate\Queue\Console\WorkCommand->runWorker() +
#21 /var/www/html/vendor/laravel/horizon/src/Console/WorkCommand.php(52): Illuminate\Queue\Console\WorkCommand->handle() +
#22 /var/www/html/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(36): Laravel\Horizon\Console\WorkCommand->handle() +
#23 /var/www/html/vendor/laravel/framework/src/Illuminate/Container/Util.php(43): Illuminate\Container\BoundMethod::{closure:Illuminate\Container\BoundMethod::call():35}() +
#24 /var/www/html/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(96): Illuminate\Container\Util::unwrapIfClosure() +
#25 /var/www/html/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(35): Illuminate\Container\BoundMethod::callBoundMethod() +
#26 /var/www/html/vendor/laravel/framework/src/Illuminate/Container/Container.php(799): Illuminate\Container\BoundMethod::call() +
#27 /var/www/html/vendor/laravel/framework/src/Illuminate/Console/Command.php(211): Illuminate\Container\Container->call() +
#28 /var/www/html/vendor/symfony/console/Command/Command.php(341): Illuminate\Console\Command->execute() +
#29 /var/www/html/vendor/laravel/framework/src/Illuminate/Console/Command.php(180): Symfony\Component\Console\Command\Command->run() +
#30 /var/www/html/vendor/symfony/console/Application.php(1102): Illuminate\Console\Command->run() +
#31 /var/www/html/vendor/symfony/console/Application.php(356): Symfony\Component\Console\Application->doRunCommand() +
#32 /var/www/html/vendor/symfony/console/Application.php(195): Symfony\Component\Console\Application->doRun() +
#33 /var/www/html/vendor/laravel/framework/src/Illuminate/Foundation/Console/Kernel.php(198): Symfony\Component\Console\Application->run() +
#34 /var/www/html/artisan(35): Illuminate\Foundation\Console\Kernel->handle() +
#35 {main}
(1 row)

668
dev-scripts/failed_job2.txt Normal file
View file

@ -0,0 +1,668 @@
exception
-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
RuntimeException: Image openproject/openproject:14 Pulling +
903681d87777 Pulling fs layer +
3cbbe86a28c2 Pulling fs layer +
6ed93aa58a52 Pulling fs layer +
787c78da4383 Pulling fs layer +
1cd9229db862 Pulling fs layer +
0d01fe7cfd1e Pulling fs layer +
41b75ad313a6 Pulling fs layer +
826ae4933f55 Pulling fs layer +
4f4fb700ef54 Pulling fs layer +
3cf16f4696b8 Pulling fs layer +
0484ea8f7e6d Pulling fs layer +
6d19e58159dc Pulling fs layer +
737a752a9cae Pulling fs layer +
425ca798016d Pulling fs layer +
57a15692b5e8 Pulling fs layer +
b479306a59d0 Pulling fs layer +
ce4c58faa18a Pulling fs layer +
af2ab31f21fd Pulling fs layer +
00d3f47888b7 Pulling fs layer +
28a89ae94b11 Pulling fs layer +
4f4fb700ef54 Waiting +
3cf16f4696b8 Waiting +
0484ea8f7e6d Waiting +
737a752a9cae Waiting +
425ca798016d Waiting +
57a15692b5e8 Waiting +
b479306a59d0 Waiting +
ce4c58faa18a Waiting +
6d19e58159dc Waiting +
28a89ae94b11 Waiting +
00d3f47888b7 Waiting +
0d01fe7cfd1e Waiting +
787c78da4383 Waiting +
41b75ad313a6 Waiting +
826ae4933f55 Waiting +
1cd9229db862 Waiting +
af2ab31f21fd Waiting +
3cbbe86a28c2 Downloading [> ] 256.1kB/24.05MB +
6ed93aa58a52 Downloading [> ] 528.1kB/64.14MB +
903681d87777 Downloading [> ] 499.7kB/49.55MB +
3cbbe86a28c2 Downloading [======================> ] 10.83MB/24.05MB +
6ed93aa58a52 Downloading [========> ] 10.66MB/64.14MB +
903681d87777 Downloading [==========> ] 10.12MB/49.55MB +
3cbbe86a28c2 Downloading [==========================================> ] 20.68MB/24.05MB +
6ed93aa58a52 Downloading [===============> ] 20.34MB/64.14MB +
903681d87777 Downloading [===================> ] 19.75MB/49.55MB +
3cbbe86a28c2 Verifying Checksum +
3cbbe86a28c2 Download complete +
6ed93aa58a52 Downloading [=========================> ] 33.25MB/64.14MB +
903681d87777 Downloading [==============================> ] 29.87MB/49.55MB +
6ed93aa58a52 Downloading [======================================> ] 49.9MB/64.14MB +
903681d87777 Downloading [===========================================> ] 43.51MB/49.55MB +
903681d87777 Verifying Checksum +
903681d87777 Download complete +
6ed93aa58a52 Downloading [=================================================> ] 63.86MB/64.14MB +
6ed93aa58a52 Verifying Checksum +
6ed93aa58a52 Download complete +
903681d87777 Extracting [> ] 524.3kB/49.55MB +
787c78da4383 Downloading [> ] 540.7kB/211.2MB +
903681d87777 Extracting [===> ] 3.67MB/49.55MB +
787c78da4383 Downloading [====> ] 19.73MB/211.2MB +
787c78da4383 Downloading [========> ] 37.36MB/211.2MB +
903681d87777 Extracting [=====> ] 5.767MB/49.55MB +
1cd9229db862 Downloading [==================================================>] 197B/197B +
1cd9229db862 Verifying Checksum +
1cd9229db862 Download complete +
0d01fe7cfd1e Downloading [> ] 380.7kB/38MB +
787c78da4383 Downloading [============> ] 51.25MB/211.2MB +
903681d87777 Extracting [=======> ] 7.34MB/49.55MB +
0d01fe7cfd1e Downloading [==================> ] 14.4MB/38MB +
787c78da4383 Downloading [================> ] 71.09MB/211.2MB +
903681d87777 Extracting [=========> ] 9.437MB/49.55MB +
0d01fe7cfd1e Downloading [================================> ] 24.55MB/38MB +
787c78da4383 Downloading [====================> ] 87.72MB/211.2MB +
903681d87777 Extracting [==========> ] 10.49MB/49.55MB +
0d01fe7cfd1e Verifying Checksum +
0d01fe7cfd1e Download complete +
787c78da4383 Downloading [========================> ] 102.2MB/211.2MB +
41b75ad313a6 Downloading [==================================================>] 142B/142B +
41b75ad313a6 Verifying Checksum +
41b75ad313a6 Download complete +
903681d87777 Extracting [============> ] 12.06MB/49.55MB +
787c78da4383 Downloading [============================> ] 119.3MB/211.2MB +
903681d87777 Extracting [===============> ] 15.2MB/49.55MB +
787c78da4383 Downloading [================================> ] 136MB/211.2MB +
903681d87777 Extracting [===================> ] 19.4MB/49.55MB +
787c78da4383 Downloading [====================================> ] 154.2MB/211.2MB +
826ae4933f55 Downloading [==========> ] 722B/3.401kB +
826ae4933f55 Downloading [==================================================>] 3.401kB/3.401kB +
826ae4933f55 Verifying Checksum +
826ae4933f55 Download complete +
4f4fb700ef54 Downloading [==================================================>] 32B/32B +
4f4fb700ef54 Verifying Checksum +
4f4fb700ef54 Download complete +
903681d87777 Extracting [======================> ] 22.02MB/49.55MB +
787c78da4383 Downloading [========================================> ] 169.2MB/211.2MB +
787c78da4383 Downloading [===========================================> ] 183.7MB/211.2MB +
903681d87777 Extracting [========================> ] 24.12MB/49.55MB +
787c78da4383 Downloading [===============================================> ] 201.9MB/211.2MB +
787c78da4383 Verifying Checksum +
787c78da4383 Download complete +
3cf16f4696b8 Downloading [> ] 8.89kB/870.3kB +
3cf16f4696b8 Verifying Checksum +
3cf16f4696b8 Download complete +
0484ea8f7e6d Downloading [========================> ] 688B/1.38kB +
0484ea8f7e6d Downloading [==================================================>] 1.38kB/1.38kB +
0484ea8f7e6d Verifying Checksum +
0484ea8f7e6d Download complete +
903681d87777 Extracting [========================> ] 24.64MB/49.55MB +
903681d87777 Extracting [=========================> ] 25.69MB/49.55MB +
6d19e58159dc Downloading [> ] 528.1kB/291.8MB +
737a752a9cae Downloading [==> ] 718B/13.64kB +
737a752a9cae Downloading [==================================================>] 13.64kB/13.64kB +
737a752a9cae Verifying Checksum +
737a752a9cae Download complete +
903681d87777 Extracting [============================> ] 27.79MB/49.55MB +
425ca798016d Downloading [> ] 300.2kB/28.71MB +
6d19e58159dc Downloading [==> ] 13.37MB/291.8MB +
425ca798016d Downloading [========================> ] 14.19MB/28.71MB +
903681d87777 Extracting [==============================> ] 30.41MB/49.55MB +
6d19e58159dc Downloading [====> ] 27.84MB/291.8MB +
425ca798016d Downloading [============================================> ] 25.69MB/28.71MB +
425ca798016d Verifying Checksum +
425ca798016d Download complete +
6d19e58159dc Downloading [======> ] 38.03MB/291.8MB +
903681d87777 Extracting [================================> ] 31.98MB/49.55MB +
57a15692b5e8 Downloading [> ] 3.393kB/257.7kB +
6d19e58159dc Downloading [=========> ] 54.69MB/291.8MB +
57a15692b5e8 Verifying Checksum +
57a15692b5e8 Download complete +
903681d87777 Extracting [==================================> ] 34.08MB/49.55MB +
6d19e58159dc Downloading [=============> ] 77.75MB/291.8MB +
903681d87777 Extracting [===================================> ] 35.65MB/49.55MB +
6d19e58159dc Downloading [================> ] 94.36MB/291.8MB +
b479306a59d0 Downloading [> ] 4.107kB/283.6kB +
903681d87777 Extracting [=====================================> ] 37.22MB/49.55MB +
b479306a59d0 Download complete +
6d19e58159dc Downloading [===================> ] 112.5MB/291.8MB +
ce4c58faa18a Downloading [> ] 527.5kB/78.48MB +
903681d87777 Extracting [=======================================> ] 39.32MB/49.55MB +
6d19e58159dc Downloading [=====================> ] 127.5MB/291.8MB +
ce4c58faa18a Downloading [========> ] 13.36MB/78.48MB +
903681d87777 Extracting [=========================================> ] 40.89MB/49.55MB +
6d19e58159dc Downloading [=========================> ] 147.9MB/291.8MB +
ce4c58faa18a Downloading [================> ] 26.17MB/78.48MB +
af2ab31f21fd Downloading [> ] 540.7kB/77.81MB +
6d19e58159dc Downloading [============================> ] 163.4MB/291.8MB +
903681d87777 Extracting [==========================================> ] 42.47MB/49.55MB +
af2ab31f21fd Downloading [=====> ] 8.028MB/77.81MB +
6d19e58159dc Downloading [==============================> ] 176.3MB/291.8MB +
903681d87777 Extracting [===========================================> ] 43.52MB/49.55MB +
af2ab31f21fd Downloading [============> ] 18.74MB/77.81MB +
6d19e58159dc Downloading [===============================> ] 184.3MB/291.8MB +
ce4c58faa18a Downloading [=======================> ] 37.44MB/78.48MB +
af2ab31f21fd Downloading [==================> ] 28.38MB/77.81MB +
903681d87777 Extracting [============================================> ] 44.56MB/49.55MB +
6d19e58159dc Downloading [=================================> ] 195.1MB/291.8MB +
ce4c58faa18a Downloading [=============================> ] 46.51MB/78.48MB +
af2ab31f21fd Downloading [==========================> ] 40.69MB/77.81MB +
6d19e58159dc Downloading [===================================> ] 209.1MB/291.8MB +
ce4c58faa18a Downloading [===================================> ] 56.19MB/78.48MB +
903681d87777 Extracting [==============================================> ] 45.61MB/49.55MB +
af2ab31f21fd Downloading [=================================> ] 51.45MB/77.81MB +
6d19e58159dc Downloading [=====================================> ] 219.3MB/291.8MB +
ce4c58faa18a Downloading [==========================================> ] 67.45MB/78.48MB +
af2ab31f21fd Downloading [=========================================> ] 64.39MB/77.81MB +
6d19e58159dc Downloading [=======================================> ] 231.7MB/291.8MB +
ce4c58faa18a Verifying Checksum +
ce4c58faa18a Download complete +
903681d87777 Extracting [==============================================> ] 46.14MB/49.55MB +
af2ab31f21fd Downloading [=================================================> ] 77.8MB/77.81MB +
af2ab31f21fd Verifying Checksum +
af2ab31f21fd Download complete +
6d19e58159dc Downloading [=========================================> ] 240.8MB/291.8MB +
903681d87777 Extracting [===============================================> ] 46.66MB/49.55MB +
6d19e58159dc Downloading [===========================================> ] 255.8MB/291.8MB +
6d19e58159dc Downloading [==============================================> ] 270.3MB/291.8MB +
903681d87777 Extracting [===============================================> ] 47.19MB/49.55MB +
00d3f47888b7 Downloading [===> ] 720B/9.92kB +
00d3f47888b7 Downloading [==================================================>] 9.92kB/9.92kB +
00d3f47888b7 Verifying Checksum +
00d3f47888b7 Download complete +
6d19e58159dc Downloading [================================================> ] 284.2MB/291.8MB +
903681d87777 Extracting [================================================> ] 47.71MB/49.55MB +
28a89ae94b11 Downloading [> ] 528.1kB/100.6MB +
6d19e58159dc Downloading [=================================================> ] 291.8MB/291.8MB +
6d19e58159dc Verifying Checksum +
6d19e58159dc Download complete +
28a89ae94b11 Downloading [==> ] 5.359MB/100.6MB +
28a89ae94b11 Downloading [======> ] 13.42MB/100.6MB +
28a89ae94b11 Downloading [=============> ] 26.32MB/100.6MB +
903681d87777 Extracting [================================================> ] 48.23MB/49.55MB +
28a89ae94b11 Downloading [====================> ] 40.79MB/100.6MB +
28a89ae94b11 Downloading [============================> ] 57.88MB/100.6MB +
28a89ae94b11 Downloading [=====================================> ] 74.48MB/100.6MB +
28a89ae94b11 Downloading [==========================================> ] 84.62MB/100.6MB +
28a89ae94b11 Downloading [===============================================> ] 96.42MB/100.6MB +
28a89ae94b11 Verifying Checksum +
28a89ae94b11 Download complete +
903681d87777 Extracting [=================================================> ] 48.76MB/49.55MB +
903681d87777 Extracting [==================================================>] 49.55MB/49.55MB +
903681d87777 Pull complete +
3cbbe86a28c2 Extracting [> ] 262.1kB/24.05MB +
3cbbe86a28c2 Extracting [=========> ] 4.719MB/24.05MB +
3cbbe86a28c2 Extracting [=====================> ] 10.22MB/24.05MB +
3cbbe86a28c2 Extracting [============================> ] 13.63MB/24.05MB +
3cbbe86a28c2 Extracting [========================================> ] 19.66MB/24.05MB +
3cbbe86a28c2 Extracting [=============================================> ] 22.02MB/24.05MB +
3cbbe86a28c2 Extracting [=================================================> ] 23.59MB/24.05MB +
3cbbe86a28c2 Extracting [==================================================>] 24.05MB/24.05MB +
3cbbe86a28c2 Pull complete +
6ed93aa58a52 Extracting [> ] 557.1kB/64.14MB +
6ed93aa58a52 Extracting [====> ] 6.128MB/64.14MB +
6ed93aa58a52 Extracting [=======> ] 10.03MB/64.14MB +
6ed93aa58a52 Extracting [=========> ] 12.81MB/64.14MB +
6ed93aa58a52 Extracting [=============> ] 16.71MB/64.14MB +
6ed93aa58a52 Extracting [================> ] 20.61MB/64.14MB +
6ed93aa58a52 Extracting [=================> ] 22.84MB/64.14MB +
6ed93aa58a52 Extracting [==================> ] 23.95MB/64.14MB +
6ed93aa58a52 Extracting [====================> ] 26.74MB/64.14MB +
6ed93aa58a52 Extracting [=======================> ] 29.52MB/64.14MB +
6ed93aa58a52 Extracting [========================> ] 31.75MB/64.14MB +
6ed93aa58a52 Extracting [==========================> ] 33.98MB/64.14MB +
6ed93aa58a52 Extracting [===========================> ] 35.65MB/64.14MB +
6ed93aa58a52 Extracting [=============================> ] 37.88MB/64.14MB +
6ed93aa58a52 Extracting [================================> ] 41.78MB/64.14MB +
6ed93aa58a52 Extracting [==================================> ] 44.01MB/64.14MB +
6ed93aa58a52 Extracting [====================================> ] 46.24MB/64.14MB +
6ed93aa58a52 Extracting [=====================================> ] 48.46MB/64.14MB +
6ed93aa58a52 Extracting [======================================> ] 49.02MB/64.14MB +
6ed93aa58a52 Extracting [========================================> ] 51.81MB/64.14MB +
6ed93aa58a52 Extracting [==========================================> ] 54.59MB/64.14MB +
6ed93aa58a52 Extracting [============================================> ] 57.38MB/64.14MB +
6ed93aa58a52 Extracting [=============================================> ] 58.49MB/64.14MB +
6ed93aa58a52 Extracting [==============================================> ] 59.05MB/64.14MB +
6ed93aa58a52 Extracting [==============================================> ] 60.16MB/64.14MB +
6ed93aa58a52 Extracting [===============================================> ] 61.28MB/64.14MB +
6ed93aa58a52 Extracting [================================================> ] 62.39MB/64.14MB +
6ed93aa58a52 Extracting [=================================================> ] 63.5MB/64.14MB +
6ed93aa58a52 Extracting [==================================================>] 64.14MB/64.14MB +
6ed93aa58a52 Pull complete +
787c78da4383 Extracting [> ] 557.1kB/211.2MB +
787c78da4383 Extracting [=> ] 4.456MB/211.2MB +
787c78da4383 Extracting [==> ] 10.03MB/211.2MB +
787c78da4383 Extracting [===> ] 14.48MB/211.2MB +
787c78da4383 Extracting [====> ] 18.94MB/211.2MB +
787c78da4383 Extracting [====> ] 20.61MB/211.2MB +
787c78da4383 Extracting [=====> ] 21.17MB/211.2MB +
787c78da4383 Extracting [=====> ] 22.28MB/211.2MB +
787c78da4383 Extracting [=====> ] 22.84MB/211.2MB +
787c78da4383 Extracting [=====> ] 23.4MB/211.2MB +
787c78da4383 Extracting [=====> ] 23.95MB/211.2MB +
787c78da4383 Extracting [=====> ] 24.51MB/211.2MB +
787c78da4383 Extracting [=====> ] 25.07MB/211.2MB +
787c78da4383 Extracting [======> ] 25.62MB/211.2MB +
787c78da4383 Extracting [======> ] 26.18MB/211.2MB +
787c78da4383 Extracting [======> ] 26.74MB/211.2MB +
787c78da4383 Extracting [======> ] 27.85MB/211.2MB +
787c78da4383 Extracting [=======> ] 30.64MB/211.2MB +
787c78da4383 Extracting [========> ] 36.21MB/211.2MB +
787c78da4383 Extracting [=========> ] 40.67MB/211.2MB +
787c78da4383 Extracting [==========> ] 46.24MB/211.2MB +
787c78da4383 Extracting [===========> ] 50.69MB/211.2MB +
787c78da4383 Extracting [============> ] 54.59MB/211.2MB +
787c78da4383 Extracting [=============> ] 56.26MB/211.2MB +
787c78da4383 Extracting [==============> ] 60.16MB/211.2MB +
787c78da4383 Extracting [===============> ] 63.5MB/211.2MB +
787c78da4383 Extracting [================> ] 69.07MB/211.2MB +
787c78da4383 Extracting [=================> ] 72.97MB/211.2MB +
787c78da4383 Extracting [=================> ] 75.2MB/211.2MB +
787c78da4383 Extracting [==================> ] 76.32MB/211.2MB +
787c78da4383 Extracting [==================> ] 77.43MB/211.2MB +
787c78da4383 Extracting [==================> ] 79.66MB/211.2MB +
787c78da4383 Extracting [===================> ] 81.89MB/211.2MB +
787c78da4383 Extracting [===================> ] 83.56MB/211.2MB +
787c78da4383 Extracting [====================> ] 85.23MB/211.2MB +
787c78da4383 Extracting [====================> ] 86.9MB/211.2MB +
787c78da4383 Extracting [====================> ] 88.57MB/211.2MB +
787c78da4383 Extracting [=====================> ] 89.69MB/211.2MB +
787c78da4383 Extracting [=====================> ] 90.8MB/211.2MB +
787c78da4383 Extracting [=====================> ] 91.91MB/211.2MB +
787c78da4383 Extracting [======================> ] 93.03MB/211.2MB +
787c78da4383 Extracting [======================> ] 93.59MB/211.2MB +
787c78da4383 Extracting [======================> ] 94.7MB/211.2MB +
787c78da4383 Extracting [======================> ] 96.93MB/211.2MB +
787c78da4383 Extracting [=======================> ] 98.6MB/211.2MB +
787c78da4383 Extracting [=======================> ] 100.8MB/211.2MB +
787c78da4383 Extracting [========================> ] 103.1MB/211.2MB +
787c78da4383 Extracting [========================> ] 104.7MB/211.2MB +
787c78da4383 Extracting [=========================> ] 107MB/211.2MB +
787c78da4383 Extracting [=========================> ] 108.6MB/211.2MB +
787c78da4383 Extracting [==========================> ] 110.9MB/211.2MB +
787c78da4383 Extracting [===========================> ] 114.2MB/211.2MB +
787c78da4383 Extracting [===========================> ] 116.4MB/211.2MB +
787c78da4383 Extracting [============================> ] 119.8MB/211.2MB +
787c78da4383 Extracting [=============================> ] 122.6MB/211.2MB +
787c78da4383 Extracting [=============================> ] 124.8MB/211.2MB +
787c78da4383 Extracting [==============================> ] 130.9MB/211.2MB +
787c78da4383 Extracting [================================> ] 136.5MB/211.2MB +
787c78da4383 Extracting [=================================> ] 141.5MB/211.2MB +
787c78da4383 Extracting [==================================> ] 147.1MB/211.2MB +
787c78da4383 Extracting [===================================> ] 150.4MB/211.2MB +
787c78da4383 Extracting [====================================> ] 154.9MB/211.2MB +
787c78da4383 Extracting [=====================================> ] 158.8MB/211.2MB +
787c78da4383 Extracting [======================================> ] 164.3MB/211.2MB +
787c78da4383 Extracting [=======================================> ] 166.6MB/211.2MB +
787c78da4383 Extracting [========================================> ] 169.3MB/211.2MB +
787c78da4383 Extracting [========================================> ] 170.5MB/211.2MB +
787c78da4383 Extracting [=========================================> ] 173.8MB/211.2MB +
787c78da4383 Extracting [=========================================> ] 176.6MB/211.2MB +
787c78da4383 Extracting [===========================================> ] 182.2MB/211.2MB +
787c78da4383 Extracting [===========================================> ] 185.5MB/211.2MB +
787c78da4383 Extracting [============================================> ] 189.4MB/211.2MB +
787c78da4383 Extracting [=============================================> ] 191.1MB/211.2MB +
787c78da4383 Extracting [=============================================> ] 193.9MB/211.2MB +
787c78da4383 Extracting [==============================================> ] 194.4MB/211.2MB +
787c78da4383 Extracting [==============================================> ] 195.5MB/211.2MB +
787c78da4383 Extracting [==============================================> ] 197.2MB/211.2MB +
787c78da4383 Extracting [===============================================> ] 199.4MB/211.2MB +
787c78da4383 Extracting [===============================================> ] 201.1MB/211.2MB +
787c78da4383 Extracting [================================================> ] 203.9MB/211.2MB +
787c78da4383 Extracting [================================================> ] 206.1MB/211.2MB +
787c78da4383 Extracting [=================================================> ] 207.2MB/211.2MB +
787c78da4383 Extracting [=================================================> ] 207.8MB/211.2MB +
787c78da4383 Extracting [=================================================> ] 208.3MB/211.2MB +
787c78da4383 Extracting [=================================================> ] 208.9MB/211.2MB +
787c78da4383 Extracting [=================================================> ] 209.5MB/211.2MB +
787c78da4383 Extracting [=================================================> ] 210MB/211.2MB +
787c78da4383 Extracting [=================================================> ] 211.1MB/211.2MB +
787c78da4383 Extracting [==================================================>] 211.2MB/211.2MB +
787c78da4383 Pull complete +
1cd9229db862 Extracting [==================================================>] 197B/197B +
1cd9229db862 Extracting [==================================================>] 197B/197B +
1cd9229db862 Pull complete +
0d01fe7cfd1e Extracting [> ] 393.2kB/38MB +
0d01fe7cfd1e Extracting [=======> ] 5.898MB/38MB +
0d01fe7cfd1e Extracting [====================> ] 15.34MB/38MB +
0d01fe7cfd1e Extracting [====================> ] 15.73MB/38MB +
0d01fe7cfd1e Extracting [=====================> ] 16.12MB/38MB +
0d01fe7cfd1e Extracting [======================> ] 16.91MB/38MB +
0d01fe7cfd1e Extracting [======================> ] 17.3MB/38MB +
0d01fe7cfd1e Extracting [=======================> ] 18.09MB/38MB +
0d01fe7cfd1e Extracting [===================================> ] 27.13MB/38MB +
0d01fe7cfd1e Extracting [==============================================> ] 35MB/38MB +
0d01fe7cfd1e Extracting [===============================================> ] 35.78MB/38MB +
0d01fe7cfd1e Extracting [=================================================> ] 37.36MB/38MB +
0d01fe7cfd1e Extracting [==================================================>] 38MB/38MB +
0d01fe7cfd1e Pull complete +
41b75ad313a6 Extracting [==================================================>] 142B/142B +
41b75ad313a6 Extracting [==================================================>] 142B/142B +
41b75ad313a6 Pull complete +
826ae4933f55 Extracting [==================================================>] 3.401kB/3.401kB +
826ae4933f55 Extracting [==================================================>] 3.401kB/3.401kB +
826ae4933f55 Pull complete +
4f4fb700ef54 Extracting [==================================================>] 32B/32B +
4f4fb700ef54 Extracting [==================================================>] 32B/32B +
4f4fb700ef54 Pull complete +
3cf16f4696b8 Extracting [=> ] 32.77kB/870.3kB +
3cf16f4696b8 Extracting [==================================================>] 870.3kB/870.3kB +
3cf16f4696b8 Extracting [==================================================>] 870.3kB/870.3kB +
3cf16f4696b8 Pull complete +
0484ea8f7e6d Extracting [==================================================>] 1.38kB/1.38kB +
0484ea8f7e6d Extracting [==================================================>] 1.38kB/1.38kB +
0484ea8f7e6d Pull complete +
6d19e58159dc Extracting [> ] 557.1kB/291.8MB +
6d19e58159dc Extracting [> ] 5.014MB/291.8MB +
6d19e58159dc Extracting [=> ] 10.03MB/291.8MB +
6d19e58159dc Extracting [=> ] 10.58MB/291.8MB +
6d19e58159dc Extracting [=> ] 11.14MB/291.8MB +
6d19e58159dc Extracting [==> ] 11.7MB/291.8MB +
6d19e58159dc Extracting [==> ] 12.26MB/291.8MB +
6d19e58159dc Extracting [==> ] 12.81MB/291.8MB +
6d19e58159dc Extracting [==> ] 17.27MB/291.8MB +
6d19e58159dc Extracting [===> ] 21.17MB/291.8MB +
6d19e58159dc Extracting [====> ] 25.07MB/291.8MB +
6d19e58159dc Extracting [====> ] 26.18MB/291.8MB +
6d19e58159dc Extracting [====> ] 27.3MB/291.8MB +
6d19e58159dc Extracting [====> ] 27.85MB/291.8MB +
6d19e58159dc Extracting [====> ] 28.41MB/291.8MB +
6d19e58159dc Extracting [=====> ] 29.52MB/291.8MB +
6d19e58159dc Extracting [=====> ] 32.31MB/291.8MB +
6d19e58159dc Extracting [======> ] 35.09MB/291.8MB +
6d19e58159dc Extracting [======> ] 36.77MB/291.8MB +
6d19e58159dc Extracting [======> ] 40.67MB/291.8MB +
6d19e58159dc Extracting [=======> ] 44.56MB/291.8MB +
6d19e58159dc Extracting [========> ] 47.35MB/291.8MB +
6d19e58159dc Extracting [========> ] 50.69MB/291.8MB +
6d19e58159dc Extracting [=========> ] 54.03MB/291.8MB +
6d19e58159dc Extracting [=========> ] 57.93MB/291.8MB +
6d19e58159dc Extracting [==========> ] 61.83MB/291.8MB +
6d19e58159dc Extracting [==========> ] 62.95MB/291.8MB +
6d19e58159dc Extracting [===========> ] 66.29MB/291.8MB +
6d19e58159dc Extracting [===========> ] 68.52MB/291.8MB +
6d19e58159dc Extracting [============> ] 71.3MB/291.8MB +
6d19e58159dc Extracting [============> ] 75.2MB/291.8MB +
6d19e58159dc Extracting [=============> ] 76.87MB/291.8MB +
6d19e58159dc Extracting [=============> ] 77.43MB/291.8MB +
6d19e58159dc Extracting [=============> ] 79.66MB/291.8MB +
6d19e58159dc Extracting [=============> ] 81.33MB/291.8MB +
6d19e58159dc Extracting [==============> ] 82.44MB/291.8MB +
6d19e58159dc Extracting [==============> ] 83.56MB/291.8MB +
6d19e58159dc Extracting [==============> ] 84.67MB/291.8MB +
6d19e58159dc Extracting [==============> ] 87.46MB/291.8MB +
6d19e58159dc Extracting [===============> ] 91.91MB/291.8MB +
6d19e58159dc Extracting [================> ] 98.04MB/291.8MB +
6d19e58159dc Extracting [=================> ] 103.6MB/291.8MB +
6d19e58159dc Extracting [==================> ] 109.2MB/291.8MB +
6d19e58159dc Extracting [===================> ] 112.5MB/291.8MB +
6d19e58159dc Extracting [===================> ] 114.8MB/291.8MB +
6d19e58159dc Extracting [====================> ] 117MB/291.8MB +
6d19e58159dc Extracting [====================> ] 119.8MB/291.8MB +
6d19e58159dc Extracting [=====================> ] 123.7MB/291.8MB +
6d19e58159dc Extracting [=====================> ] 128.1MB/291.8MB +
6d19e58159dc Extracting [======================> ] 132.6MB/291.8MB +
6d19e58159dc Extracting [=======================> ] 137MB/291.8MB +
6d19e58159dc Extracting [========================> ] 140.4MB/291.8MB +
6d19e58159dc Extracting [========================> ] 144.3MB/291.8MB +
6d19e58159dc Extracting [=========================> ] 149.3MB/291.8MB +
6d19e58159dc Extracting [==========================> ] 154.3MB/291.8MB +
6d19e58159dc Extracting [===========================> ] 157.6MB/291.8MB +
6d19e58159dc Extracting [===========================> ] 162.1MB/291.8MB +
6d19e58159dc Extracting [============================> ] 166MB/291.8MB +
6d19e58159dc Extracting [=============================> ] 169.9MB/291.8MB +
6d19e58159dc Extracting [=============================> ] 172.7MB/291.8MB +
6d19e58159dc Extracting [==============================> ] 177.1MB/291.8MB +
6d19e58159dc Extracting [===============================> ] 182.2MB/291.8MB +
6d19e58159dc Extracting [===============================> ] 186.6MB/291.8MB +
6d19e58159dc Extracting [================================> ] 191.1MB/291.8MB +
6d19e58159dc Extracting [=================================> ] 195MB/291.8MB +
6d19e58159dc Extracting [==================================> ] 201.7MB/291.8MB +
6d19e58159dc Extracting [===================================> ] 206.7MB/291.8MB +
6d19e58159dc Extracting [====================================> ] 213.4MB/291.8MB +
6d19e58159dc Extracting [=====================================> ] 218.4MB/291.8MB +
6d19e58159dc Extracting [======================================> ] 223.4MB/291.8MB +
6d19e58159dc Extracting [======================================> ] 225.1MB/291.8MB +
6d19e58159dc Extracting [======================================> ] 226.2MB/291.8MB +
6d19e58159dc Extracting [======================================> ] 226.7MB/291.8MB +
6d19e58159dc Extracting [=======================================> ] 227.8MB/291.8MB +
6d19e58159dc Extracting [=======================================> ] 229MB/291.8MB +
6d19e58159dc Extracting [=======================================> ] 230.1MB/291.8MB +
6d19e58159dc Extracting [=======================================> ] 231.2MB/291.8MB +
6d19e58159dc Extracting [=======================================> ] 232.3MB/291.8MB +
6d19e58159dc Extracting [=======================================> ] 232.8MB/291.8MB +
6d19e58159dc Extracting [========================================> ] 234MB/291.8MB +
6d19e58159dc Extracting [========================================> ] 234.5MB/291.8MB +
6d19e58159dc Extracting [========================================> ] 235.1MB/291.8MB +
6d19e58159dc Extracting [========================================> ] 235.6MB/291.8MB +
6d19e58159dc Extracting [========================================> ] 236.2MB/291.8MB +
6d19e58159dc Extracting [========================================> ] 236.7MB/291.8MB +
6d19e58159dc Extracting [========================================> ] 237.3MB/291.8MB +
6d19e58159dc Extracting [========================================> ] 237.9MB/291.8MB +
6d19e58159dc Extracting [=========================================> ] 239.5MB/291.8MB +
6d19e58159dc Extracting [=========================================> ] 241.2MB/291.8MB +
6d19e58159dc Extracting [=========================================> ] 243.4MB/291.8MB +
6d19e58159dc Extracting [==========================================> ] 247.3MB/291.8MB +
6d19e58159dc Extracting [===========================================> ] 251.8MB/291.8MB +
6d19e58159dc Extracting [===========================================> ] 255.7MB/291.8MB +
6d19e58159dc Extracting [============================================> ] 259.6MB/291.8MB +
6d19e58159dc Extracting [=============================================> ] 262.9MB/291.8MB +
6d19e58159dc Extracting [=============================================> ] 267.9MB/291.8MB +
6d19e58159dc Extracting [==============================================> ] 272.4MB/291.8MB +
6d19e58159dc Extracting [===============================================> ] 275.7MB/291.8MB +
6d19e58159dc Extracting [===============================================> ] 278.5MB/291.8MB +
6d19e58159dc Extracting [================================================> ] 281.9MB/291.8MB +
6d19e58159dc Extracting [================================================> ] 283MB/291.8MB +
6d19e58159dc Extracting [================================================> ] 284.1MB/291.8MB +
6d19e58159dc Extracting [=================================================> ] 286.9MB/291.8MB +
6d19e58159dc Extracting [==================================================>] 291.8MB/291.8MB +
6d19e58159dc Pull complete +
737a752a9cae Extracting [==================================================>] 13.64kB/13.64kB +
737a752a9cae Extracting [==================================================>] 13.64kB/13.64kB +
737a752a9cae Pull complete +
425ca798016d Extracting [> ] 294.9kB/28.71MB +
425ca798016d Extracting [=> ] 589.8kB/28.71MB +
425ca798016d Extracting [=> ] 884.7kB/28.71MB +
425ca798016d Extracting [====> ] 2.654MB/28.71MB +
425ca798016d Extracting [=========> ] 5.603MB/28.71MB +
425ca798016d Extracting [============> ] 7.078MB/28.71MB +
425ca798016d Extracting [=======================> ] 13.27MB/28.71MB +
425ca798016d Extracting [========================================> ] 23MB/28.71MB +
425ca798016d Extracting [=============================================> ] 26.25MB/28.71MB +
425ca798016d Extracting [==============================================> ] 26.54MB/28.71MB +
425ca798016d Extracting [==============================================> ] 26.84MB/28.71MB +
425ca798016d Extracting [================================================> ] 27.72MB/28.71MB +
425ca798016d Extracting [================================================> ] 28.02MB/28.71MB +
425ca798016d Extracting [=================================================> ] 28.31MB/28.71MB +
425ca798016d Extracting [=================================================> ] 28.61MB/28.71MB +
425ca798016d Extracting [==================================================>] 28.71MB/28.71MB +
425ca798016d Pull complete +
57a15692b5e8 Extracting [======> ] 32.77kB/257.7kB +
57a15692b5e8 Extracting [==================================================>] 257.7kB/257.7kB +
57a15692b5e8 Extracting [==================================================>] 257.7kB/257.7kB +
57a15692b5e8 Pull complete +
b479306a59d0 Extracting [=====> ] 32.77kB/283.6kB +
b479306a59d0 Extracting [========================================> ] 229.4kB/283.6kB +
b479306a59d0 Extracting [==================================================>] 283.6kB/283.6kB +
b479306a59d0 Extracting [==================================================>] 283.6kB/283.6kB +
b479306a59d0 Pull complete +
ce4c58faa18a Extracting [> ] 557.1kB/78.48MB +
ce4c58faa18a Extracting [====> ] 7.242MB/78.48MB +
ce4c58faa18a Extracting [======> ] 10.03MB/78.48MB +
ce4c58faa18a Extracting [=======> ] 11.7MB/78.48MB +
ce4c58faa18a Extracting [============> ] 18.94MB/78.48MB +
ce4c58faa18a Extracting [=============> ] 20.61MB/78.48MB +
ce4c58faa18a Extracting [=============> ] 21.17MB/78.48MB +
ce4c58faa18a Extracting [=============> ] 21.73MB/78.48MB +
ce4c58faa18a Extracting [==============> ] 22.28MB/78.48MB +
ce4c58faa18a Extracting [=================> ] 26.74MB/78.48MB +
ce4c58faa18a Extracting [=================> ] 27.85MB/78.48MB +
ce4c58faa18a Extracting [===================> ] 30.08MB/78.48MB +
ce4c58faa18a Extracting [===================> ] 30.64MB/78.48MB +
ce4c58faa18a Extracting [====================> ] 31.75MB/78.48MB +
ce4c58faa18a Extracting [======================> ] 35.09MB/78.48MB +
ce4c58faa18a Extracting [========================> ] 38.99MB/78.48MB +
ce4c58faa18a Extracting [=========================> ] 40.11MB/78.48MB +
ce4c58faa18a Extracting [=========================> ] 40.67MB/78.48MB +
ce4c58faa18a Extracting [==========================> ] 41.22MB/78.48MB +
ce4c58faa18a Extracting [==========================> ] 42.34MB/78.48MB +
ce4c58faa18a Extracting [===========================> ] 42.89MB/78.48MB +
ce4c58faa18a Extracting [===========================> ] 43.45MB/78.48MB +
ce4c58faa18a Extracting [============================> ] 44.01MB/78.48MB +
ce4c58faa18a Extracting [============================> ] 45.12MB/78.48MB +
ce4c58faa18a Extracting [=============================> ] 45.68MB/78.48MB +
ce4c58faa18a Extracting [=============================> ] 46.24MB/78.48MB +
ce4c58faa18a Extracting [=============================> ] 46.79MB/78.48MB +
ce4c58faa18a Extracting [==============================> ] 47.35MB/78.48MB +
ce4c58faa18a Extracting [===============================> ] 50.14MB/78.48MB +
ce4c58faa18a Extracting [================================> ] 51.25MB/78.48MB +
ce4c58faa18a Extracting [=================================> ] 52.36MB/78.48MB +
ce4c58faa18a Extracting [===================================> ] 55.71MB/78.48MB +
ce4c58faa18a Extracting [====================================> ] 57.93MB/78.48MB +
ce4c58faa18a Extracting [=====================================> ] 58.49MB/78.48MB +
ce4c58faa18a Extracting [=====================================> ] 59.05MB/78.48MB +
ce4c58faa18a Extracting [=====================================> ] 59.6MB/78.48MB +
ce4c58faa18a Extracting [=======================================> ] 61.28MB/78.48MB +
ce4c58faa18a Extracting [=======================================> ] 62.39MB/78.48MB +
ce4c58faa18a Extracting [========================================> ] 64.06MB/78.48MB +
ce4c58faa18a Extracting [=========================================> ] 65.18MB/78.48MB +
ce4c58faa18a Extracting [=========================================> ] 65.73MB/78.48MB +
ce4c58faa18a Extracting [==========================================> ] 66.29MB/78.48MB +
ce4c58faa18a Extracting [==========================================> ] 66.85MB/78.48MB +
ce4c58faa18a Extracting [==========================================> ] 67.4MB/78.48MB +
ce4c58faa18a Extracting [===========================================> ] 68.52MB/78.48MB +
ce4c58faa18a Extracting [============================================> ] 69.07MB/78.48MB +
ce4c58faa18a Extracting [============================================> ] 69.63MB/78.48MB +
ce4c58faa18a Extracting [============================================> ] 70.19MB/78.48MB +
ce4c58faa18a Extracting [=============================================> ] 70.75MB/78.48MB +
ce4c58faa18a Extracting [=============================================> ] 71.3MB/78.48MB +
ce4c58faa18a Extracting [=============================================> ] 71.86MB/78.48MB +
ce4c58faa18a Extracting [==============================================> ] 72.42MB/78.48MB +
ce4c58faa18a Extracting [================================================> ] 76.32MB/78.48MB +
ce4c58faa18a Extracting [==================================================>] 78.48MB/78.48MB +
ce4c58faa18a Pull complete +
af2ab31f21fd Extracting [> ] 557.1kB/77.81MB +
af2ab31f21fd Extracting [=> ] 2.785MB/77.81MB +
af2ab31f21fd Extracting [====> ] 6.685MB/77.81MB +
af2ab31f21fd Extracting [=========> ] 14.48MB/77.81MB +
af2ab31f21fd Extracting [=========> ] 15.04MB/77.81MB +
af2ab31f21fd Extracting [==========> ] 15.6MB/77.81MB +
af2ab31f21fd Extracting [===========> ] 18.38MB/77.81MB +
af2ab31f21fd Extracting [=============> ] 20.61MB/77.81MB +
af2ab31f21fd Extracting [==============> ] 22.84MB/77.81MB +
af2ab31f21fd Extracting [===============> ] 23.4MB/77.81MB +
af2ab31f21fd Extracting [===============> ] 23.95MB/77.81MB +
af2ab31f21fd Extracting [===============> ] 24.51MB/77.81MB +
af2ab31f21fd Extracting [===================> ] 30.08MB/77.81MB +
af2ab31f21fd Extracting [=====================> ] 32.87MB/77.81MB +
af2ab31f21fd Extracting [======================> ] 35.09MB/77.81MB +
af2ab31f21fd Extracting [======================> ] 35.65MB/77.81MB +
af2ab31f21fd Extracting [============================> ] 45.12MB/77.81MB +
af2ab31f21fd Extracting [==================================> ] 52.92MB/77.81MB +
af2ab31f21fd Extracting [======================================> ] 59.6MB/77.81MB +
af2ab31f21fd Extracting [=======================================> ] 60.72MB/77.81MB +
af2ab31f21fd Extracting [========================================> ] 63.5MB/77.81MB +
af2ab31f21fd Extracting [=========================================> ] 65.18MB/77.81MB +
af2ab31f21fd Extracting [==========================================> ] 66.85MB/77.81MB +
af2ab31f21fd Extracting [============================================> ] 68.52MB/77.81MB +
af2ab31f21fd Extracting [==============================================> ] 71.86MB/77.81MB +
af2ab31f21fd Extracting [===============================================> ] 74.65MB/77.81MB +
af2ab31f21fd Extracting [=================================================> ] 77.43MB/77.81MB +
af2ab31f21fd Extracting [==================================================>] 77.81MB/77.81MB +
af2ab31f21fd Pull complete +
00d3f47888b7 Extracting [==================================================>] 9.92kB/9.92kB +
00d3f47888b7 Pull complete +
28a89ae94b11 Extracting [> ] 557.1kB/100.6MB +
28a89ae94b11 Extracting [=> ] 2.785MB/100.6MB +
28a89ae94b11 Extracting [===> ] 6.128MB/100.6MB +
28a89ae94b11 Extracting [====> ] 8.913MB/100.6MB +
28a89ae94b11 Extracting [======> ] 12.26MB/100.6MB +
28a89ae94b11 Extracting [=======> ] 15.04MB/100.6MB +
28a89ae94b11 Extracting [========> ] 17.83MB/100.6MB +
28a89ae94b11 Extracting [==========> ] 21.73MB/100.6MB +
28a89ae94b11 Extracting [=============> ] 27.3MB/100.6MB +
28a89ae94b11 Extracting [==============> ] 28.97MB/100.6MB +
28a89ae94b11 Extracting [===============> ] 31.75MB/100.6MB +
28a89ae94b11 Extracting [=================> ] 34.54MB/100.6MB +
28a89ae94b11 Extracting [==================> ] 37.88MB/100.6MB +
28a89ae94b11 Extracting [====================> ] 41.78MB/100.6MB +
28a89ae94b11 Extracting [======================> ] 44.56MB/100.6MB +
28a89ae94b11 Extracting [======================> ] 45.68MB/100.6MB +
28a89ae94b11 Extracting [========================> ] 48.46MB/100.6MB +
28a89ae94b11 Extracting [==========================> ] 52.36MB/100.6MB +
28a89ae94b11 Extracting [============================> ] 57.93MB/100.6MB +
28a89ae94b11 Extracting [===============================> ] 62.95MB/100.6MB +
28a89ae94b11 Extracting [==================================> ] 69.63MB/100.6MB +
28a89ae94b11 Extracting [====================================> ] 72.97MB/100.6MB +
28a89ae94b11 Extracting [=====================================> ] 75.76MB/100.6MB +
28a89ae94b11 Extracting [======================================> ] 77.99MB/100.6MB +
28a89ae94b11 Extracting [=======================================> ] 79.66MB/100.6MB +
28a89ae94b11 Extracting [========================================> ] 82.44MB/100.6MB +
28a89ae94b11 Extracting [=========================================> ] 83.56MB/100.6MB +
28a89ae94b11 Extracting [==========================================> ] 84.67MB/100.6MB +
28a89ae94b11 Extracting [===========================================> ] 86.9MB/100.6MB +
28a89ae94b11 Extracting [============================================> ] 88.57MB/100.6MB +
28a89ae94b11 Extracting [============================================> ] 89.69MB/100.6MB +
28a89ae94b11 Extracting [============================================> ] 90.24MB/100.6MB +
28a89ae94b11 Extracting [=============================================> ] 92.47MB/100.6MB +
28a89ae94b11 Extracting [===============================================> ] 95.26MB/100.6MB +
28a89ae94b11 Extracting [================================================> ] 97.48MB/100.6MB +
28a89ae94b11 Extracting [=================================================> ] 99.16MB/100.6MB +
28a89ae94b11 Extracting [=================================================> ] 99.71MB/100.6MB +
28a89ae94b11 Extracting [==================================================>] 100.6MB/100.6MB +
28a89ae94b11 Pull complete +
Image openproject/openproject:14 Pulled +
network kssgo8ccgkos0kw0c0owgk8o declared as external, but could not be found +
in /var/www/html/app/Actions/CoolifyTask/RunRemoteProcess.php:118 +
Stack trace: +
#0 /var/www/html/app/Jobs/CoolifyTask.php(60): App\Actions\CoolifyTask\RunRemoteProcess->__invoke() +
#1 /var/www/html/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(36): App\Jobs\CoolifyTask->handle() +
#2 /var/www/html/vendor/laravel/framework/src/Illuminate/Container/Util.php(43): Illuminate\Container\BoundMethod::{closure:Illuminate\Container\BoundMethod::call():35}() +
#3 /var/www/html/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(96): Illuminate\Container\Util::unwrapIfClosure() +
#4 /var/www/html/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(35): Illuminate\Container\BoundMethod::callBoundMethod() +
#5 /var/www/html/vendor/laravel/framework/src/Illuminate/Container/Container.php(799): Illuminate\Container\BoundMethod::call() +
#6 /var/www/html/vendor/laravel/framework/src/Illuminate/Bus/Dispatcher.php(129): Illuminate\Container\Container->call() +
#7 /var/www/html/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(180): Illuminate\Bus\Dispatcher->{closure:Illuminate\Bus\Dispatcher::dispatchNow():126}() +
#8 /var/www/html/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(137): Illuminate\Pipeline\Pipeline->{closure:Illuminate\Pipeline\Pipeline::prepareDestination():178}() +
#9 /var/www/html/vendor/laravel/framework/src/Illuminate/Bus/Dispatcher.php(133): Illuminate\Pipeline\Pipeline->then() +
#10 /var/www/html/vendor/laravel/framework/src/Illuminate/Queue/CallQueuedHandler.php(134): Illuminate\Bus\Dispatcher->dispatchNow() +
#11 /var/www/html/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(180): Illuminate\Queue\CallQueuedHandler->{closure:Illuminate\Queue\CallQueuedHandler::dispatchThroughMiddleware():127}()+
#12 /var/www/html/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(137): Illuminate\Pipeline\Pipeline->{closure:Illuminate\Pipeline\Pipeline::prepareDestination():178}() +
#13 /var/www/html/vendor/laravel/framework/src/Illuminate/Queue/CallQueuedHandler.php(127): Illuminate\Pipeline\Pipeline->then() +
#14 /var/www/html/vendor/laravel/framework/src/Illuminate/Queue/CallQueuedHandler.php(68): Illuminate\Queue\CallQueuedHandler->dispatchThroughMiddleware() +
#15 /var/www/html/vendor/laravel/framework/src/Illuminate/Queue/Jobs/Job.php(102): Illuminate\Queue\CallQueuedHandler->call() +
#16 /var/www/html/vendor/laravel/framework/src/Illuminate/Queue/Worker.php(485): Illuminate\Queue\Jobs\Job->fire() +
#17 /var/www/html/vendor/laravel/framework/src/Illuminate/Queue/Worker.php(435): Illuminate\Queue\Worker->process() +
#18 /var/www/html/vendor/laravel/framework/src/Illuminate/Queue/Worker.php(201): Illuminate\Queue\Worker->runJob() +
#19 /var/www/html/vendor/laravel/framework/src/Illuminate/Queue/Console/WorkCommand.php(148): Illuminate\Queue\Worker->daemon() +
#20 /var/www/html/vendor/laravel/framework/src/Illuminate/Queue/Console/WorkCommand.php(131): Illuminate\Queue\Console\WorkCommand->runWorker() +
#21 /var/www/html/vendor/laravel/horizon/src/Console/WorkCommand.php(52): Illuminate\Queue\Console\WorkCommand->handle() +
#22 /var/www/html/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(36): Laravel\Horizon\Console\WorkCommand->handle() +
#23 /var/www/html/vendor/laravel/framework/src/Illuminate/Container/Util.php(43): Illuminate\Container\BoundMethod::{closure:Illuminate\Container\BoundMethod::call():35}() +
#24 /var/www/html/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(96): Illuminate\Container\Util::unwrapIfClosure() +
#25 /var/www/html/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(35): Illuminate\Container\BoundMethod::callBoundMethod() +
#26 /var/www/html/vendor/laravel/framework/src/Illuminate/Container/Container.php(799): Illuminate\Container\BoundMethod::call() +
#27 /var/www/html/vendor/laravel/framework/src/Illuminate/Console/Command.php(211): Illuminate\Container\Container->call() +
#28 /var/www/html/vendor/symfony/console/Command/Command.php(341): Illuminate\Console\Command->execute() +
#29 /var/www/html/vendor/laravel/framework/src/Illuminate/Console/Command.php(180): Symfony\Component\Console\Command\Command->run() +
#30 /var/www/html/vendor/symfony/console/Application.php(1102): Illuminate\Console\Command->run() +
#31 /var/www/html/vendor/symfony/console/Application.php(356): Symfony\Component\Console\Application->doRunCommand() +
#32 /var/www/html/vendor/symfony/console/Application.php(195): Symfony\Component\Console\Application->doRun() +
#33 /var/www/html/vendor/laravel/framework/src/Illuminate/Foundation/Console/Kernel.php(198): Symfony\Component\Console\Application->run() +
#34 /var/www/html/artisan(35): Illuminate\Foundation\Console\Kernel->handle() +
#35 {main}
(1 row)

665
dev-scripts/failed_job3.txt Normal file
View file

@ -0,0 +1,665 @@
RuntimeException: Image openproject/openproject:14 Pulling +
903681d87777 Pulling fs layer +
3cbbe86a28c2 Pulling fs layer +
6ed93aa58a52 Pulling fs layer +
787c78da4383 Pulling fs layer +
1cd9229db862 Pulling fs layer +
0d01fe7cfd1e Pulling fs layer +
41b75ad313a6 Pulling fs layer +
826ae4933f55 Pulling fs layer +
4f4fb700ef54 Pulling fs layer +
3cf16f4696b8 Pulling fs layer +
0484ea8f7e6d Pulling fs layer +
6d19e58159dc Pulling fs layer +
737a752a9cae Pulling fs layer +
425ca798016d Pulling fs layer +
57a15692b5e8 Pulling fs layer +
b479306a59d0 Pulling fs layer +
ce4c58faa18a Pulling fs layer +
af2ab31f21fd Pulling fs layer +
00d3f47888b7 Pulling fs layer +
28a89ae94b11 Pulling fs layer +
4f4fb700ef54 Waiting +
3cf16f4696b8 Waiting +
0484ea8f7e6d Waiting +
737a752a9cae Waiting +
425ca798016d Waiting +
57a15692b5e8 Waiting +
b479306a59d0 Waiting +
ce4c58faa18a Waiting +
6d19e58159dc Waiting +
28a89ae94b11 Waiting +
00d3f47888b7 Waiting +
0d01fe7cfd1e Waiting +
787c78da4383 Waiting +
41b75ad313a6 Waiting +
826ae4933f55 Waiting +
1cd9229db862 Waiting +
af2ab31f21fd Waiting +
3cbbe86a28c2 Downloading [> ] 256.1kB/24.05MB +
6ed93aa58a52 Downloading [> ] 528.1kB/64.14MB +
903681d87777 Downloading [> ] 499.7kB/49.55MB +
3cbbe86a28c2 Downloading [======================> ] 10.83MB/24.05MB +
6ed93aa58a52 Downloading [========> ] 10.66MB/64.14MB +
903681d87777 Downloading [==========> ] 10.12MB/49.55MB +
3cbbe86a28c2 Downloading [==========================================> ] 20.68MB/24.05MB +
6ed93aa58a52 Downloading [===============> ] 20.34MB/64.14MB +
903681d87777 Downloading [===================> ] 19.75MB/49.55MB +
3cbbe86a28c2 Verifying Checksum +
3cbbe86a28c2 Download complete +
6ed93aa58a52 Downloading [=========================> ] 33.25MB/64.14MB +
903681d87777 Downloading [==============================> ] 29.87MB/49.55MB +
6ed93aa58a52 Downloading [======================================> ] 49.9MB/64.14MB +
903681d87777 Downloading [===========================================> ] 43.51MB/49.55MB +
903681d87777 Verifying Checksum +
903681d87777 Download complete +
6ed93aa58a52 Downloading [=================================================> ] 63.86MB/64.14MB +
6ed93aa58a52 Verifying Checksum +
6ed93aa58a52 Download complete +
903681d87777 Extracting [> ] 524.3kB/49.55MB +
787c78da4383 Downloading [> ] 540.7kB/211.2MB +
903681d87777 Extracting [===> ] 3.67MB/49.55MB +
787c78da4383 Downloading [====> ] 19.73MB/211.2MB +
787c78da4383 Downloading [========> ] 37.36MB/211.2MB +
903681d87777 Extracting [=====> ] 5.767MB/49.55MB +
1cd9229db862 Downloading [==================================================>] 197B/197B +
1cd9229db862 Verifying Checksum +
1cd9229db862 Download complete +
0d01fe7cfd1e Downloading [> ] 380.7kB/38MB +
787c78da4383 Downloading [============> ] 51.25MB/211.2MB +
903681d87777 Extracting [=======> ] 7.34MB/49.55MB +
0d01fe7cfd1e Downloading [==================> ] 14.4MB/38MB +
787c78da4383 Downloading [================> ] 71.09MB/211.2MB +
903681d87777 Extracting [=========> ] 9.437MB/49.55MB +
0d01fe7cfd1e Downloading [================================> ] 24.55MB/38MB +
787c78da4383 Downloading [====================> ] 87.72MB/211.2MB +
903681d87777 Extracting [==========> ] 10.49MB/49.55MB +
0d01fe7cfd1e Verifying Checksum +
0d01fe7cfd1e Download complete +
787c78da4383 Downloading [========================> ] 102.2MB/211.2MB +
41b75ad313a6 Downloading [==================================================>] 142B/142B +
41b75ad313a6 Verifying Checksum +
41b75ad313a6 Download complete +
903681d87777 Extracting [============> ] 12.06MB/49.55MB +
787c78da4383 Downloading [============================> ] 119.3MB/211.2MB +
903681d87777 Extracting [===============> ] 15.2MB/49.55MB +
787c78da4383 Downloading [================================> ] 136MB/211.2MB +
903681d87777 Extracting [===================> ] 19.4MB/49.55MB +
787c78da4383 Downloading [====================================> ] 154.2MB/211.2MB +
826ae4933f55 Downloading [==========> ] 722B/3.401kB +
826ae4933f55 Downloading [==================================================>] 3.401kB/3.401kB +
826ae4933f55 Verifying Checksum +
826ae4933f55 Download complete +
4f4fb700ef54 Downloading [==================================================>] 32B/32B +
4f4fb700ef54 Verifying Checksum +
4f4fb700ef54 Download complete +
903681d87777 Extracting [======================> ] 22.02MB/49.55MB +
787c78da4383 Downloading [========================================> ] 169.2MB/211.2MB +
787c78da4383 Downloading [===========================================> ] 183.7MB/211.2MB +
903681d87777 Extracting [========================> ] 24.12MB/49.55MB +
787c78da4383 Downloading [===============================================> ] 201.9MB/211.2MB +
787c78da4383 Verifying Checksum +
787c78da4383 Download complete +
3cf16f4696b8 Downloading [> ] 8.89kB/870.3kB +
3cf16f4696b8 Verifying Checksum +
3cf16f4696b8 Download complete +
0484ea8f7e6d Downloading [========================> ] 688B/1.38kB +
0484ea8f7e6d Downloading [==================================================>] 1.38kB/1.38kB +
0484ea8f7e6d Verifying Checksum +
0484ea8f7e6d Download complete +
903681d87777 Extracting [========================> ] 24.64MB/49.55MB +
903681d87777 Extracting [=========================> ] 25.69MB/49.55MB +
6d19e58159dc Downloading [> ] 528.1kB/291.8MB +
737a752a9cae Downloading [==> ] 718B/13.64kB +
737a752a9cae Downloading [==================================================>] 13.64kB/13.64kB +
737a752a9cae Verifying Checksum +
737a752a9cae Download complete +
903681d87777 Extracting [============================> ] 27.79MB/49.55MB +
425ca798016d Downloading [> ] 300.2kB/28.71MB +
6d19e58159dc Downloading [==> ] 13.37MB/291.8MB +
425ca798016d Downloading [========================> ] 14.19MB/28.71MB +
903681d87777 Extracting [==============================> ] 30.41MB/49.55MB +
6d19e58159dc Downloading [====> ] 27.84MB/291.8MB +
425ca798016d Downloading [============================================> ] 25.69MB/28.71MB +
425ca798016d Verifying Checksum +
425ca798016d Download complete +
6d19e58159dc Downloading [======> ] 38.03MB/291.8MB +
903681d87777 Extracting [================================> ] 31.98MB/49.55MB +
57a15692b5e8 Downloading [> ] 3.393kB/257.7kB +
6d19e58159dc Downloading [=========> ] 54.69MB/291.8MB +
57a15692b5e8 Verifying Checksum +
57a15692b5e8 Download complete +
903681d87777 Extracting [==================================> ] 34.08MB/49.55MB +
6d19e58159dc Downloading [=============> ] 77.75MB/291.8MB +
903681d87777 Extracting [===================================> ] 35.65MB/49.55MB +
6d19e58159dc Downloading [================> ] 94.36MB/291.8MB +
b479306a59d0 Downloading [> ] 4.107kB/283.6kB +
903681d87777 Extracting [=====================================> ] 37.22MB/49.55MB +
b479306a59d0 Download complete +
6d19e58159dc Downloading [===================> ] 112.5MB/291.8MB +
ce4c58faa18a Downloading [> ] 527.5kB/78.48MB +
903681d87777 Extracting [=======================================> ] 39.32MB/49.55MB +
6d19e58159dc Downloading [=====================> ] 127.5MB/291.8MB +
ce4c58faa18a Downloading [========> ] 13.36MB/78.48MB +
903681d87777 Extracting [=========================================> ] 40.89MB/49.55MB +
6d19e58159dc Downloading [=========================> ] 147.9MB/291.8MB +
ce4c58faa18a Downloading [================> ] 26.17MB/78.48MB +
af2ab31f21fd Downloading [> ] 540.7kB/77.81MB +
6d19e58159dc Downloading [============================> ] 163.4MB/291.8MB +
903681d87777 Extracting [==========================================> ] 42.47MB/49.55MB +
af2ab31f21fd Downloading [=====> ] 8.028MB/77.81MB +
6d19e58159dc Downloading [==============================> ] 176.3MB/291.8MB +
903681d87777 Extracting [===========================================> ] 43.52MB/49.55MB +
af2ab31f21fd Downloading [============> ] 18.74MB/77.81MB +
6d19e58159dc Downloading [===============================> ] 184.3MB/291.8MB +
ce4c58faa18a Downloading [=======================> ] 37.44MB/78.48MB +
af2ab31f21fd Downloading [==================> ] 28.38MB/77.81MB +
903681d87777 Extracting [============================================> ] 44.56MB/49.55MB +
6d19e58159dc Downloading [=================================> ] 195.1MB/291.8MB +
ce4c58faa18a Downloading [=============================> ] 46.51MB/78.48MB +
af2ab31f21fd Downloading [==========================> ] 40.69MB/77.81MB +
6d19e58159dc Downloading [===================================> ] 209.1MB/291.8MB +
ce4c58faa18a Downloading [===================================> ] 56.19MB/78.48MB +
903681d87777 Extracting [==============================================> ] 45.61MB/49.55MB +
af2ab31f21fd Downloading [=================================> ] 51.45MB/77.81MB +
6d19e58159dc Downloading [=====================================> ] 219.3MB/291.8MB +
ce4c58faa18a Downloading [==========================================> ] 67.45MB/78.48MB +
af2ab31f21fd Downloading [=========================================> ] 64.39MB/77.81MB +
6d19e58159dc Downloading [=======================================> ] 231.7MB/291.8MB +
ce4c58faa18a Verifying Checksum +
ce4c58faa18a Download complete +
903681d87777 Extracting [==============================================> ] 46.14MB/49.55MB +
af2ab31f21fd Downloading [=================================================> ] 77.8MB/77.81MB +
af2ab31f21fd Verifying Checksum +
af2ab31f21fd Download complete +
6d19e58159dc Downloading [=========================================> ] 240.8MB/291.8MB +
903681d87777 Extracting [===============================================> ] 46.66MB/49.55MB +
6d19e58159dc Downloading [===========================================> ] 255.8MB/291.8MB +
6d19e58159dc Downloading [==============================================> ] 270.3MB/291.8MB +
903681d87777 Extracting [===============================================> ] 47.19MB/49.55MB +
00d3f47888b7 Downloading [===> ] 720B/9.92kB +
00d3f47888b7 Downloading [==================================================>] 9.92kB/9.92kB +
00d3f47888b7 Verifying Checksum +
00d3f47888b7 Download complete +
6d19e58159dc Downloading [================================================> ] 284.2MB/291.8MB +
903681d87777 Extracting [================================================> ] 47.71MB/49.55MB +
28a89ae94b11 Downloading [> ] 528.1kB/100.6MB +
6d19e58159dc Downloading [=================================================> ] 291.8MB/291.8MB +
6d19e58159dc Verifying Checksum +
6d19e58159dc Download complete +
28a89ae94b11 Downloading [==> ] 5.359MB/100.6MB +
28a89ae94b11 Downloading [======> ] 13.42MB/100.6MB +
28a89ae94b11 Downloading [=============> ] 26.32MB/100.6MB +
903681d87777 Extracting [================================================> ] 48.23MB/49.55MB +
28a89ae94b11 Downloading [====================> ] 40.79MB/100.6MB +
28a89ae94b11 Downloading [============================> ] 57.88MB/100.6MB +
28a89ae94b11 Downloading [=====================================> ] 74.48MB/100.6MB +
28a89ae94b11 Downloading [==========================================> ] 84.62MB/100.6MB +
28a89ae94b11 Downloading [===============================================> ] 96.42MB/100.6MB +
28a89ae94b11 Verifying Checksum +
28a89ae94b11 Download complete +
903681d87777 Extracting [=================================================> ] 48.76MB/49.55MB +
903681d87777 Extracting [==================================================>] 49.55MB/49.55MB +
903681d87777 Pull complete +
3cbbe86a28c2 Extracting [> ] 262.1kB/24.05MB +
3cbbe86a28c2 Extracting [=========> ] 4.719MB/24.05MB +
3cbbe86a28c2 Extracting [=====================> ] 10.22MB/24.05MB +
3cbbe86a28c2 Extracting [============================> ] 13.63MB/24.05MB +
3cbbe86a28c2 Extracting [========================================> ] 19.66MB/24.05MB +
3cbbe86a28c2 Extracting [=============================================> ] 22.02MB/24.05MB +
3cbbe86a28c2 Extracting [=================================================> ] 23.59MB/24.05MB +
3cbbe86a28c2 Extracting [==================================================>] 24.05MB/24.05MB +
3cbbe86a28c2 Pull complete +
6ed93aa58a52 Extracting [> ] 557.1kB/64.14MB +
6ed93aa58a52 Extracting [====> ] 6.128MB/64.14MB +
6ed93aa58a52 Extracting [=======> ] 10.03MB/64.14MB +
6ed93aa58a52 Extracting [=========> ] 12.81MB/64.14MB +
6ed93aa58a52 Extracting [=============> ] 16.71MB/64.14MB +
6ed93aa58a52 Extracting [================> ] 20.61MB/64.14MB +
6ed93aa58a52 Extracting [=================> ] 22.84MB/64.14MB +
6ed93aa58a52 Extracting [==================> ] 23.95MB/64.14MB +
6ed93aa58a52 Extracting [====================> ] 26.74MB/64.14MB +
6ed93aa58a52 Extracting [=======================> ] 29.52MB/64.14MB +
6ed93aa58a52 Extracting [========================> ] 31.75MB/64.14MB +
6ed93aa58a52 Extracting [==========================> ] 33.98MB/64.14MB +
6ed93aa58a52 Extracting [===========================> ] 35.65MB/64.14MB +
6ed93aa58a52 Extracting [=============================> ] 37.88MB/64.14MB +
6ed93aa58a52 Extracting [================================> ] 41.78MB/64.14MB +
6ed93aa58a52 Extracting [==================================> ] 44.01MB/64.14MB +
6ed93aa58a52 Extracting [====================================> ] 46.24MB/64.14MB +
6ed93aa58a52 Extracting [=====================================> ] 48.46MB/64.14MB +
6ed93aa58a52 Extracting [======================================> ] 49.02MB/64.14MB +
6ed93aa58a52 Extracting [========================================> ] 51.81MB/64.14MB +
6ed93aa58a52 Extracting [==========================================> ] 54.59MB/64.14MB +
6ed93aa58a52 Extracting [============================================> ] 57.38MB/64.14MB +
6ed93aa58a52 Extracting [=============================================> ] 58.49MB/64.14MB +
6ed93aa58a52 Extracting [==============================================> ] 59.05MB/64.14MB +
6ed93aa58a52 Extracting [==============================================> ] 60.16MB/64.14MB +
6ed93aa58a52 Extracting [===============================================> ] 61.28MB/64.14MB +
6ed93aa58a52 Extracting [================================================> ] 62.39MB/64.14MB +
6ed93aa58a52 Extracting [=================================================> ] 63.5MB/64.14MB +
6ed93aa58a52 Extracting [==================================================>] 64.14MB/64.14MB +
6ed93aa58a52 Pull complete +
787c78da4383 Extracting [> ] 557.1kB/211.2MB +
787c78da4383 Extracting [=> ] 4.456MB/211.2MB +
787c78da4383 Extracting [==> ] 10.03MB/211.2MB +
787c78da4383 Extracting [===> ] 14.48MB/211.2MB +
787c78da4383 Extracting [====> ] 18.94MB/211.2MB +
787c78da4383 Extracting [====> ] 20.61MB/211.2MB +
787c78da4383 Extracting [=====> ] 21.17MB/211.2MB +
787c78da4383 Extracting [=====> ] 22.28MB/211.2MB +
787c78da4383 Extracting [=====> ] 22.84MB/211.2MB +
787c78da4383 Extracting [=====> ] 23.4MB/211.2MB +
787c78da4383 Extracting [=====> ] 23.95MB/211.2MB +
787c78da4383 Extracting [=====> ] 24.51MB/211.2MB +
787c78da4383 Extracting [=====> ] 25.07MB/211.2MB +
787c78da4383 Extracting [======> ] 25.62MB/211.2MB +
787c78da4383 Extracting [======> ] 26.18MB/211.2MB +
787c78da4383 Extracting [======> ] 26.74MB/211.2MB +
787c78da4383 Extracting [======> ] 27.85MB/211.2MB +
787c78da4383 Extracting [=======> ] 30.64MB/211.2MB +
787c78da4383 Extracting [========> ] 36.21MB/211.2MB +
787c78da4383 Extracting [=========> ] 40.67MB/211.2MB +
787c78da4383 Extracting [==========> ] 46.24MB/211.2MB +
787c78da4383 Extracting [===========> ] 50.69MB/211.2MB +
787c78da4383 Extracting [============> ] 54.59MB/211.2MB +
787c78da4383 Extracting [=============> ] 56.26MB/211.2MB +
787c78da4383 Extracting [==============> ] 60.16MB/211.2MB +
787c78da4383 Extracting [===============> ] 63.5MB/211.2MB +
787c78da4383 Extracting [================> ] 69.07MB/211.2MB +
787c78da4383 Extracting [=================> ] 72.97MB/211.2MB +
787c78da4383 Extracting [=================> ] 75.2MB/211.2MB +
787c78da4383 Extracting [==================> ] 76.32MB/211.2MB +
787c78da4383 Extracting [==================> ] 77.43MB/211.2MB +
787c78da4383 Extracting [==================> ] 79.66MB/211.2MB +
787c78da4383 Extracting [===================> ] 81.89MB/211.2MB +
787c78da4383 Extracting [===================> ] 83.56MB/211.2MB +
787c78da4383 Extracting [====================> ] 85.23MB/211.2MB +
787c78da4383 Extracting [====================> ] 86.9MB/211.2MB +
787c78da4383 Extracting [====================> ] 88.57MB/211.2MB +
787c78da4383 Extracting [=====================> ] 89.69MB/211.2MB +
787c78da4383 Extracting [=====================> ] 90.8MB/211.2MB +
787c78da4383 Extracting [=====================> ] 91.91MB/211.2MB +
787c78da4383 Extracting [======================> ] 93.03MB/211.2MB +
787c78da4383 Extracting [======================> ] 93.59MB/211.2MB +
787c78da4383 Extracting [======================> ] 94.7MB/211.2MB +
787c78da4383 Extracting [======================> ] 96.93MB/211.2MB +
787c78da4383 Extracting [=======================> ] 98.6MB/211.2MB +
787c78da4383 Extracting [=======================> ] 100.8MB/211.2MB +
787c78da4383 Extracting [========================> ] 103.1MB/211.2MB +
787c78da4383 Extracting [========================> ] 104.7MB/211.2MB +
787c78da4383 Extracting [=========================> ] 107MB/211.2MB +
787c78da4383 Extracting [=========================> ] 108.6MB/211.2MB +
787c78da4383 Extracting [==========================> ] 110.9MB/211.2MB +
787c78da4383 Extracting [===========================> ] 114.2MB/211.2MB +
787c78da4383 Extracting [===========================> ] 116.4MB/211.2MB +
787c78da4383 Extracting [============================> ] 119.8MB/211.2MB +
787c78da4383 Extracting [=============================> ] 122.6MB/211.2MB +
787c78da4383 Extracting [=============================> ] 124.8MB/211.2MB +
787c78da4383 Extracting [==============================> ] 130.9MB/211.2MB +
787c78da4383 Extracting [================================> ] 136.5MB/211.2MB +
787c78da4383 Extracting [=================================> ] 141.5MB/211.2MB +
787c78da4383 Extracting [==================================> ] 147.1MB/211.2MB +
787c78da4383 Extracting [===================================> ] 150.4MB/211.2MB +
787c78da4383 Extracting [====================================> ] 154.9MB/211.2MB +
787c78da4383 Extracting [=====================================> ] 158.8MB/211.2MB +
787c78da4383 Extracting [======================================> ] 164.3MB/211.2MB +
787c78da4383 Extracting [=======================================> ] 166.6MB/211.2MB +
787c78da4383 Extracting [========================================> ] 169.3MB/211.2MB +
787c78da4383 Extracting [========================================> ] 170.5MB/211.2MB +
787c78da4383 Extracting [=========================================> ] 173.8MB/211.2MB +
787c78da4383 Extracting [=========================================> ] 176.6MB/211.2MB +
787c78da4383 Extracting [===========================================> ] 182.2MB/211.2MB +
787c78da4383 Extracting [===========================================> ] 185.5MB/211.2MB +
787c78da4383 Extracting [============================================> ] 189.4MB/211.2MB +
787c78da4383 Extracting [=============================================> ] 191.1MB/211.2MB +
787c78da4383 Extracting [=============================================> ] 193.9MB/211.2MB +
787c78da4383 Extracting [==============================================> ] 194.4MB/211.2MB +
787c78da4383 Extracting [==============================================> ] 195.5MB/211.2MB +
787c78da4383 Extracting [==============================================> ] 197.2MB/211.2MB +
787c78da4383 Extracting [===============================================> ] 199.4MB/211.2MB +
787c78da4383 Extracting [===============================================> ] 201.1MB/211.2MB +
787c78da4383 Extracting [================================================> ] 203.9MB/211.2MB +
787c78da4383 Extracting [================================================> ] 206.1MB/211.2MB +
787c78da4383 Extracting [=================================================> ] 207.2MB/211.2MB +
787c78da4383 Extracting [=================================================> ] 207.8MB/211.2MB +
787c78da4383 Extracting [=================================================> ] 208.3MB/211.2MB +
787c78da4383 Extracting [=================================================> ] 208.9MB/211.2MB +
787c78da4383 Extracting [=================================================> ] 209.5MB/211.2MB +
787c78da4383 Extracting [=================================================> ] 210MB/211.2MB +
787c78da4383 Extracting [=================================================> ] 211.1MB/211.2MB +
787c78da4383 Extracting [==================================================>] 211.2MB/211.2MB +
787c78da4383 Pull complete +
1cd9229db862 Extracting [==================================================>] 197B/197B +
1cd9229db862 Extracting [==================================================>] 197B/197B +
1cd9229db862 Pull complete +
0d01fe7cfd1e Extracting [> ] 393.2kB/38MB +
0d01fe7cfd1e Extracting [=======> ] 5.898MB/38MB +
0d01fe7cfd1e Extracting [====================> ] 15.34MB/38MB +
0d01fe7cfd1e Extracting [====================> ] 15.73MB/38MB +
0d01fe7cfd1e Extracting [=====================> ] 16.12MB/38MB +
0d01fe7cfd1e Extracting [======================> ] 16.91MB/38MB +
0d01fe7cfd1e Extracting [======================> ] 17.3MB/38MB +
0d01fe7cfd1e Extracting [=======================> ] 18.09MB/38MB +
0d01fe7cfd1e Extracting [===================================> ] 27.13MB/38MB +
0d01fe7cfd1e Extracting [==============================================> ] 35MB/38MB +
0d01fe7cfd1e Extracting [===============================================> ] 35.78MB/38MB +
0d01fe7cfd1e Extracting [=================================================> ] 37.36MB/38MB +
0d01fe7cfd1e Extracting [==================================================>] 38MB/38MB +
0d01fe7cfd1e Pull complete +
41b75ad313a6 Extracting [==================================================>] 142B/142B +
41b75ad313a6 Extracting [==================================================>] 142B/142B +
41b75ad313a6 Pull complete +
826ae4933f55 Extracting [==================================================>] 3.401kB/3.401kB +
826ae4933f55 Extracting [==================================================>] 3.401kB/3.401kB +
826ae4933f55 Pull complete +
4f4fb700ef54 Extracting [==================================================>] 32B/32B +
4f4fb700ef54 Extracting [==================================================>] 32B/32B +
4f4fb700ef54 Pull complete +
3cf16f4696b8 Extracting [=> ] 32.77kB/870.3kB +
3cf16f4696b8 Extracting [==================================================>] 870.3kB/870.3kB +
3cf16f4696b8 Extracting [==================================================>] 870.3kB/870.3kB +
3cf16f4696b8 Pull complete +
0484ea8f7e6d Extracting [==================================================>] 1.38kB/1.38kB +
0484ea8f7e6d Extracting [==================================================>] 1.38kB/1.38kB +
0484ea8f7e6d Pull complete +
6d19e58159dc Extracting [> ] 557.1kB/291.8MB +
6d19e58159dc Extracting [> ] 5.014MB/291.8MB +
6d19e58159dc Extracting [=> ] 10.03MB/291.8MB +
6d19e58159dc Extracting [=> ] 10.58MB/291.8MB +
6d19e58159dc Extracting [=> ] 11.14MB/291.8MB +
6d19e58159dc Extracting [==> ] 11.7MB/291.8MB +
6d19e58159dc Extracting [==> ] 12.26MB/291.8MB +
6d19e58159dc Extracting [==> ] 12.81MB/291.8MB +
6d19e58159dc Extracting [==> ] 17.27MB/291.8MB +
6d19e58159dc Extracting [===> ] 21.17MB/291.8MB +
6d19e58159dc Extracting [====> ] 25.07MB/291.8MB +
6d19e58159dc Extracting [====> ] 26.18MB/291.8MB +
6d19e58159dc Extracting [====> ] 27.3MB/291.8MB +
6d19e58159dc Extracting [====> ] 27.85MB/291.8MB +
6d19e58159dc Extracting [====> ] 28.41MB/291.8MB +
6d19e58159dc Extracting [=====> ] 29.52MB/291.8MB +
6d19e58159dc Extracting [=====> ] 32.31MB/291.8MB +
6d19e58159dc Extracting [======> ] 35.09MB/291.8MB +
6d19e58159dc Extracting [======> ] 36.77MB/291.8MB +
6d19e58159dc Extracting [======> ] 40.67MB/291.8MB +
6d19e58159dc Extracting [=======> ] 44.56MB/291.8MB +
6d19e58159dc Extracting [========> ] 47.35MB/291.8MB +
6d19e58159dc Extracting [========> ] 50.69MB/291.8MB +
6d19e58159dc Extracting [=========> ] 54.03MB/291.8MB +
6d19e58159dc Extracting [=========> ] 57.93MB/291.8MB +
6d19e58159dc Extracting [==========> ] 61.83MB/291.8MB +
6d19e58159dc Extracting [==========> ] 62.95MB/291.8MB +
6d19e58159dc Extracting [===========> ] 66.29MB/291.8MB +
6d19e58159dc Extracting [===========> ] 68.52MB/291.8MB +
6d19e58159dc Extracting [============> ] 71.3MB/291.8MB +
6d19e58159dc Extracting [============> ] 75.2MB/291.8MB +
6d19e58159dc Extracting [=============> ] 76.87MB/291.8MB +
6d19e58159dc Extracting [=============> ] 77.43MB/291.8MB +
6d19e58159dc Extracting [=============> ] 79.66MB/291.8MB +
6d19e58159dc Extracting [=============> ] 81.33MB/291.8MB +
6d19e58159dc Extracting [==============> ] 82.44MB/291.8MB +
6d19e58159dc Extracting [==============> ] 83.56MB/291.8MB +
6d19e58159dc Extracting [==============> ] 84.67MB/291.8MB +
6d19e58159dc Extracting [==============> ] 87.46MB/291.8MB +
6d19e58159dc Extracting [===============> ] 91.91MB/291.8MB +
6d19e58159dc Extracting [================> ] 98.04MB/291.8MB +
6d19e58159dc Extracting [=================> ] 103.6MB/291.8MB +
6d19e58159dc Extracting [==================> ] 109.2MB/291.8MB +
6d19e58159dc Extracting [===================> ] 112.5MB/291.8MB +
6d19e58159dc Extracting [===================> ] 114.8MB/291.8MB +
6d19e58159dc Extracting [====================> ] 117MB/291.8MB +
6d19e58159dc Extracting [====================> ] 119.8MB/291.8MB +
6d19e58159dc Extracting [=====================> ] 123.7MB/291.8MB +
6d19e58159dc Extracting [=====================> ] 128.1MB/291.8MB +
6d19e58159dc Extracting [======================> ] 132.6MB/291.8MB +
6d19e58159dc Extracting [=======================> ] 137MB/291.8MB +
6d19e58159dc Extracting [========================> ] 140.4MB/291.8MB +
6d19e58159dc Extracting [========================> ] 144.3MB/291.8MB +
6d19e58159dc Extracting [=========================> ] 149.3MB/291.8MB +
6d19e58159dc Extracting [==========================> ] 154.3MB/291.8MB +
6d19e58159dc Extracting [===========================> ] 157.6MB/291.8MB +
6d19e58159dc Extracting [===========================> ] 162.1MB/291.8MB +
6d19e58159dc Extracting [============================> ] 166MB/291.8MB +
6d19e58159dc Extracting [=============================> ] 169.9MB/291.8MB +
6d19e58159dc Extracting [=============================> ] 172.7MB/291.8MB +
6d19e58159dc Extracting [==============================> ] 177.1MB/291.8MB +
6d19e58159dc Extracting [===============================> ] 182.2MB/291.8MB +
6d19e58159dc Extracting [===============================> ] 186.6MB/291.8MB +
6d19e58159dc Extracting [================================> ] 191.1MB/291.8MB +
6d19e58159dc Extracting [=================================> ] 195MB/291.8MB +
6d19e58159dc Extracting [==================================> ] 201.7MB/291.8MB +
6d19e58159dc Extracting [===================================> ] 206.7MB/291.8MB +
6d19e58159dc Extracting [====================================> ] 213.4MB/291.8MB +
6d19e58159dc Extracting [=====================================> ] 218.4MB/291.8MB +
6d19e58159dc Extracting [======================================> ] 223.4MB/291.8MB +
6d19e58159dc Extracting [======================================> ] 225.1MB/291.8MB +
6d19e58159dc Extracting [======================================> ] 226.2MB/291.8MB +
6d19e58159dc Extracting [======================================> ] 226.7MB/291.8MB +
6d19e58159dc Extracting [=======================================> ] 227.8MB/291.8MB +
6d19e58159dc Extracting [=======================================> ] 229MB/291.8MB +
6d19e58159dc Extracting [=======================================> ] 230.1MB/291.8MB +
6d19e58159dc Extracting [=======================================> ] 231.2MB/291.8MB +
6d19e58159dc Extracting [=======================================> ] 232.3MB/291.8MB +
6d19e58159dc Extracting [=======================================> ] 232.8MB/291.8MB +
6d19e58159dc Extracting [========================================> ] 234MB/291.8MB +
6d19e58159dc Extracting [========================================> ] 234.5MB/291.8MB +
6d19e58159dc Extracting [========================================> ] 235.1MB/291.8MB +
6d19e58159dc Extracting [========================================> ] 235.6MB/291.8MB +
6d19e58159dc Extracting [========================================> ] 236.2MB/291.8MB +
6d19e58159dc Extracting [========================================> ] 236.7MB/291.8MB +
6d19e58159dc Extracting [========================================> ] 237.3MB/291.8MB +
6d19e58159dc Extracting [========================================> ] 237.9MB/291.8MB +
6d19e58159dc Extracting [=========================================> ] 239.5MB/291.8MB +
6d19e58159dc Extracting [=========================================> ] 241.2MB/291.8MB +
6d19e58159dc Extracting [=========================================> ] 243.4MB/291.8MB +
6d19e58159dc Extracting [==========================================> ] 247.3MB/291.8MB +
6d19e58159dc Extracting [===========================================> ] 251.8MB/291.8MB +
6d19e58159dc Extracting [===========================================> ] 255.7MB/291.8MB +
6d19e58159dc Extracting [============================================> ] 259.6MB/291.8MB +
6d19e58159dc Extracting [=============================================> ] 262.9MB/291.8MB +
6d19e58159dc Extracting [=============================================> ] 267.9MB/291.8MB +
6d19e58159dc Extracting [==============================================> ] 272.4MB/291.8MB +
6d19e58159dc Extracting [===============================================> ] 275.7MB/291.8MB +
6d19e58159dc Extracting [===============================================> ] 278.5MB/291.8MB +
6d19e58159dc Extracting [================================================> ] 281.9MB/291.8MB +
6d19e58159dc Extracting [================================================> ] 283MB/291.8MB +
6d19e58159dc Extracting [================================================> ] 284.1MB/291.8MB +
6d19e58159dc Extracting [=================================================> ] 286.9MB/291.8MB +
6d19e58159dc Extracting [==================================================>] 291.8MB/291.8MB +
6d19e58159dc Pull complete +
737a752a9cae Extracting [==================================================>] 13.64kB/13.64kB +
737a752a9cae Extracting [==================================================>] 13.64kB/13.64kB +
737a752a9cae Pull complete +
425ca798016d Extracting [> ] 294.9kB/28.71MB +
425ca798016d Extracting [=> ] 589.8kB/28.71MB +
425ca798016d Extracting [=> ] 884.7kB/28.71MB +
425ca798016d Extracting [====> ] 2.654MB/28.71MB +
425ca798016d Extracting [=========> ] 5.603MB/28.71MB +
425ca798016d Extracting [============> ] 7.078MB/28.71MB +
425ca798016d Extracting [=======================> ] 13.27MB/28.71MB +
425ca798016d Extracting [========================================> ] 23MB/28.71MB +
425ca798016d Extracting [=============================================> ] 26.25MB/28.71MB +
425ca798016d Extracting [==============================================> ] 26.54MB/28.71MB +
425ca798016d Extracting [==============================================> ] 26.84MB/28.71MB +
425ca798016d Extracting [================================================> ] 27.72MB/28.71MB +
425ca798016d Extracting [================================================> ] 28.02MB/28.71MB +
425ca798016d Extracting [=================================================> ] 28.31MB/28.71MB +
425ca798016d Extracting [=================================================> ] 28.61MB/28.71MB +
425ca798016d Extracting [==================================================>] 28.71MB/28.71MB +
425ca798016d Pull complete +
57a15692b5e8 Extracting [======> ] 32.77kB/257.7kB +
57a15692b5e8 Extracting [==================================================>] 257.7kB/257.7kB +
57a15692b5e8 Extracting [==================================================>] 257.7kB/257.7kB +
57a15692b5e8 Pull complete +
b479306a59d0 Extracting [=====> ] 32.77kB/283.6kB +
b479306a59d0 Extracting [========================================> ] 229.4kB/283.6kB +
b479306a59d0 Extracting [==================================================>] 283.6kB/283.6kB +
b479306a59d0 Extracting [==================================================>] 283.6kB/283.6kB +
b479306a59d0 Pull complete +
ce4c58faa18a Extracting [> ] 557.1kB/78.48MB +
ce4c58faa18a Extracting [====> ] 7.242MB/78.48MB +
ce4c58faa18a Extracting [======> ] 10.03MB/78.48MB +
ce4c58faa18a Extracting [=======> ] 11.7MB/78.48MB +
ce4c58faa18a Extracting [============> ] 18.94MB/78.48MB +
ce4c58faa18a Extracting [=============> ] 20.61MB/78.48MB +
ce4c58faa18a Extracting [=============> ] 21.17MB/78.48MB +
ce4c58faa18a Extracting [=============> ] 21.73MB/78.48MB +
ce4c58faa18a Extracting [==============> ] 22.28MB/78.48MB +
ce4c58faa18a Extracting [=================> ] 26.74MB/78.48MB +
ce4c58faa18a Extracting [=================> ] 27.85MB/78.48MB +
ce4c58faa18a Extracting [===================> ] 30.08MB/78.48MB +
ce4c58faa18a Extracting [===================> ] 30.64MB/78.48MB +
ce4c58faa18a Extracting [====================> ] 31.75MB/78.48MB +
ce4c58faa18a Extracting [======================> ] 35.09MB/78.48MB +
ce4c58faa18a Extracting [========================> ] 38.99MB/78.48MB +
ce4c58faa18a Extracting [=========================> ] 40.11MB/78.48MB +
ce4c58faa18a Extracting [=========================> ] 40.67MB/78.48MB +
ce4c58faa18a Extracting [==========================> ] 41.22MB/78.48MB +
ce4c58faa18a Extracting [==========================> ] 42.34MB/78.48MB +
ce4c58faa18a Extracting [===========================> ] 42.89MB/78.48MB +
ce4c58faa18a Extracting [===========================> ] 43.45MB/78.48MB +
ce4c58faa18a Extracting [============================> ] 44.01MB/78.48MB +
ce4c58faa18a Extracting [============================> ] 45.12MB/78.48MB +
ce4c58faa18a Extracting [=============================> ] 45.68MB/78.48MB +
ce4c58faa18a Extracting [=============================> ] 46.24MB/78.48MB +
ce4c58faa18a Extracting [=============================> ] 46.79MB/78.48MB +
ce4c58faa18a Extracting [==============================> ] 47.35MB/78.48MB +
ce4c58faa18a Extracting [===============================> ] 50.14MB/78.48MB +
ce4c58faa18a Extracting [================================> ] 51.25MB/78.48MB +
ce4c58faa18a Extracting [=================================> ] 52.36MB/78.48MB +
ce4c58faa18a Extracting [===================================> ] 55.71MB/78.48MB +
ce4c58faa18a Extracting [====================================> ] 57.93MB/78.48MB +
ce4c58faa18a Extracting [=====================================> ] 58.49MB/78.48MB +
ce4c58faa18a Extracting [=====================================> ] 59.05MB/78.48MB +
ce4c58faa18a Extracting [=====================================> ] 59.6MB/78.48MB +
ce4c58faa18a Extracting [=======================================> ] 61.28MB/78.48MB +
ce4c58faa18a Extracting [=======================================> ] 62.39MB/78.48MB +
ce4c58faa18a Extracting [========================================> ] 64.06MB/78.48MB +
ce4c58faa18a Extracting [=========================================> ] 65.18MB/78.48MB +
ce4c58faa18a Extracting [=========================================> ] 65.73MB/78.48MB +
ce4c58faa18a Extracting [==========================================> ] 66.29MB/78.48MB +
ce4c58faa18a Extracting [==========================================> ] 66.85MB/78.48MB +
ce4c58faa18a Extracting [==========================================> ] 67.4MB/78.48MB +
ce4c58faa18a Extracting [===========================================> ] 68.52MB/78.48MB +
ce4c58faa18a Extracting [============================================> ] 69.07MB/78.48MB +
ce4c58faa18a Extracting [============================================> ] 69.63MB/78.48MB +
ce4c58faa18a Extracting [============================================> ] 70.19MB/78.48MB +
ce4c58faa18a Extracting [=============================================> ] 70.75MB/78.48MB +
ce4c58faa18a Extracting [=============================================> ] 71.3MB/78.48MB +
ce4c58faa18a Extracting [=============================================> ] 71.86MB/78.48MB +
ce4c58faa18a Extracting [==============================================> ] 72.42MB/78.48MB +
ce4c58faa18a Extracting [================================================> ] 76.32MB/78.48MB +
ce4c58faa18a Extracting [==================================================>] 78.48MB/78.48MB +
ce4c58faa18a Pull complete +
af2ab31f21fd Extracting [> ] 557.1kB/77.81MB +
af2ab31f21fd Extracting [=> ] 2.785MB/77.81MB +
af2ab31f21fd Extracting [====> ] 6.685MB/77.81MB +
af2ab31f21fd Extracting [=========> ] 14.48MB/77.81MB +
af2ab31f21fd Extracting [=========> ] 15.04MB/77.81MB +
af2ab31f21fd Extracting [==========> ] 15.6MB/77.81MB +
af2ab31f21fd Extracting [===========> ] 18.38MB/77.81MB +
af2ab31f21fd Extracting [=============> ] 20.61MB/77.81MB +
af2ab31f21fd Extracting [==============> ] 22.84MB/77.81MB +
af2ab31f21fd Extracting [===============> ] 23.4MB/77.81MB +
af2ab31f21fd Extracting [===============> ] 23.95MB/77.81MB +
af2ab31f21fd Extracting [===============> ] 24.51MB/77.81MB +
af2ab31f21fd Extracting [===================> ] 30.08MB/77.81MB +
af2ab31f21fd Extracting [=====================> ] 32.87MB/77.81MB +
af2ab31f21fd Extracting [======================> ] 35.09MB/77.81MB +
af2ab31f21fd Extracting [======================> ] 35.65MB/77.81MB +
af2ab31f21fd Extracting [============================> ] 45.12MB/77.81MB +
af2ab31f21fd Extracting [==================================> ] 52.92MB/77.81MB +
af2ab31f21fd Extracting [======================================> ] 59.6MB/77.81MB +
af2ab31f21fd Extracting [=======================================> ] 60.72MB/77.81MB +
af2ab31f21fd Extracting [========================================> ] 63.5MB/77.81MB +
af2ab31f21fd Extracting [=========================================> ] 65.18MB/77.81MB +
af2ab31f21fd Extracting [==========================================> ] 66.85MB/77.81MB +
af2ab31f21fd Extracting [============================================> ] 68.52MB/77.81MB +
af2ab31f21fd Extracting [==============================================> ] 71.86MB/77.81MB +
af2ab31f21fd Extracting [===============================================> ] 74.65MB/77.81MB +
af2ab31f21fd Extracting [=================================================> ] 77.43MB/77.81MB +
af2ab31f21fd Extracting [==================================================>] 77.81MB/77.81MB +
af2ab31f21fd Pull complete +
00d3f47888b7 Extracting [==================================================>] 9.92kB/9.92kB +
00d3f47888b7 Pull complete +
28a89ae94b11 Extracting [> ] 557.1kB/100.6MB +
28a89ae94b11 Extracting [=> ] 2.785MB/100.6MB +
28a89ae94b11 Extracting [===> ] 6.128MB/100.6MB +
28a89ae94b11 Extracting [====> ] 8.913MB/100.6MB +
28a89ae94b11 Extracting [======> ] 12.26MB/100.6MB +
28a89ae94b11 Extracting [=======> ] 15.04MB/100.6MB +
28a89ae94b11 Extracting [========> ] 17.83MB/100.6MB +
28a89ae94b11 Extracting [==========> ] 21.73MB/100.6MB +
28a89ae94b11 Extracting [=============> ] 27.3MB/100.6MB +
28a89ae94b11 Extracting [==============> ] 28.97MB/100.6MB +
28a89ae94b11 Extracting [===============> ] 31.75MB/100.6MB +
28a89ae94b11 Extracting [=================> ] 34.54MB/100.6MB +
28a89ae94b11 Extracting [==================> ] 37.88MB/100.6MB +
28a89ae94b11 Extracting [====================> ] 41.78MB/100.6MB +
28a89ae94b11 Extracting [======================> ] 44.56MB/100.6MB +
28a89ae94b11 Extracting [======================> ] 45.68MB/100.6MB +
28a89ae94b11 Extracting [========================> ] 48.46MB/100.6MB +
28a89ae94b11 Extracting [==========================> ] 52.36MB/100.6MB +
28a89ae94b11 Extracting [============================> ] 57.93MB/100.6MB +
28a89ae94b11 Extracting [===============================> ] 62.95MB/100.6MB +
28a89ae94b11 Extracting [==================================> ] 69.63MB/100.6MB +
28a89ae94b11 Extracting [====================================> ] 72.97MB/100.6MB +
28a89ae94b11 Extracting [=====================================> ] 75.76MB/100.6MB +
28a89ae94b11 Extracting [======================================> ] 77.99MB/100.6MB +
28a89ae94b11 Extracting [=======================================> ] 79.66MB/100.6MB +
28a89ae94b11 Extracting [========================================> ] 82.44MB/100.6MB +
28a89ae94b11 Extracting [=========================================> ] 83.56MB/100.6MB +
28a89ae94b11 Extracting [==========================================> ] 84.67MB/100.6MB +
28a89ae94b11 Extracting [===========================================> ] 86.9MB/100.6MB +
28a89ae94b11 Extracting [============================================> ] 88.57MB/100.6MB +
28a89ae94b11 Extracting [============================================> ] 89.69MB/100.6MB +
28a89ae94b11 Extracting [============================================> ] 90.24MB/100.6MB +
28a89ae94b11 Extracting [=============================================> ] 92.47MB/100.6MB +
28a89ae94b11 Extracting [===============================================> ] 95.26MB/100.6MB +
28a89ae94b11 Extracting [================================================> ] 97.48MB/100.6MB +
28a89ae94b11 Extracting [=================================================> ] 99.16MB/100.6MB +
28a89ae94b11 Extracting [=================================================> ] 99.71MB/100.6MB +
28a89ae94b11 Extracting [==================================================>] 100.6MB/100.6MB +
28a89ae94b11 Pull complete +
Image openproject/openproject:14 Pulled +
network kssgo8ccgkos0kw0c0owgk8o declared as external, but could not be found +
in /var/www/html/app/Actions/CoolifyTask/RunRemoteProcess.php:118 +
Stack trace: +
#0 /var/www/html/app/Jobs/CoolifyTask.php(60): App\Actions\CoolifyTask\RunRemoteProcess->__invoke() +
#1 /var/www/html/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(36): App\Jobs\CoolifyTask->handle() +
#2 /var/www/html/vendor/laravel/framework/src/Illuminate/Container/Util.php(43): Illuminate\Container\BoundMethod::{closure:Illuminate\Container\BoundMethod::call():35}() +
#3 /var/www/html/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(96): Illuminate\Container\Util::unwrapIfClosure() +
#4 /var/www/html/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(35): Illuminate\Container\BoundMethod::callBoundMethod() +
#5 /var/www/html/vendor/laravel/framework/src/Illuminate/Container/Container.php(799): Illuminate\Container\BoundMethod::call() +
#6 /var/www/html/vendor/laravel/framework/src/Illuminate/Bus/Dispatcher.php(129): Illuminate\Container\Container->call() +
#7 /var/www/html/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(180): Illuminate\Bus\Dispatcher->{closure:Illuminate\Bus\Dispatcher::dispatchNow():126}() +
#8 /var/www/html/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(137): Illuminate\Pipeline\Pipeline->{closure:Illuminate\Pipeline\Pipeline::prepareDestination():178}() +
#9 /var/www/html/vendor/laravel/framework/src/Illuminate/Bus/Dispatcher.php(133): Illuminate\Pipeline\Pipeline->then() +
#10 /var/www/html/vendor/laravel/framework/src/Illuminate/Queue/CallQueuedHandler.php(134): Illuminate\Bus\Dispatcher->dispatchNow() +
#11 /var/www/html/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(180): Illuminate\Queue\CallQueuedHandler->{closure:Illuminate\Queue\CallQueuedHandler::dispatchThroughMiddleware():127}()+
#12 /var/www/html/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(137): Illuminate\Pipeline\Pipeline->{closure:Illuminate\Pipeline\Pipeline::prepareDestination():178}() +
#13 /var/www/html/vendor/laravel/framework/src/Illuminate/Queue/CallQueuedHandler.php(127): Illuminate\Pipeline\Pipeline->then() +
#14 /var/www/html/vendor/laravel/framework/src/Illuminate/Queue/CallQueuedHandler.php(68): Illuminate\Queue\CallQueuedHandler->dispatchThroughMiddleware() +
#15 /var/www/html/vendor/laravel/framework/src/Illuminate/Queue/Jobs/Job.php(102): Illuminate\Queue\CallQueuedHandler->call() +
#16 /var/www/html/vendor/laravel/framework/src/Illuminate/Queue/Worker.php(485): Illuminate\Queue\Jobs\Job->fire() +
#17 /var/www/html/vendor/laravel/framework/src/Illuminate/Queue/Worker.php(435): Illuminate\Queue\Worker->process() +
#18 /var/www/html/vendor/laravel/framework/src/Illuminate/Queue/Worker.php(201): Illuminate\Queue\Worker->runJob() +
#19 /var/www/html/vendor/laravel/framework/src/Illuminate/Queue/Console/WorkCommand.php(148): Illuminate\Queue\Worker->daemon() +
#20 /var/www/html/vendor/laravel/framework/src/Illuminate/Queue/Console/WorkCommand.php(131): Illuminate\Queue\Console\WorkCommand->runWorker() +
#21 /var/www/html/vendor/laravel/horizon/src/Console/WorkCommand.php(52): Illuminate\Queue\Console\WorkCommand->handle() +
#22 /var/www/html/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(36): Laravel\Horizon\Console\WorkCommand->handle() +
#23 /var/www/html/vendor/laravel/framework/src/Illuminate/Container/Util.php(43): Illuminate\Container\BoundMethod::{closure:Illuminate\Container\BoundMethod::call():35}() +
#24 /var/www/html/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(96): Illuminate\Container\Util::unwrapIfClosure() +
#25 /var/www/html/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(35): Illuminate\Container\BoundMethod::callBoundMethod() +
#26 /var/www/html/vendor/laravel/framework/src/Illuminate/Container/Container.php(799): Illuminate\Container\BoundMethod::call() +
#27 /var/www/html/vendor/laravel/framework/src/Illuminate/Console/Command.php(211): Illuminate\Container\Container->call() +
#28 /var/www/html/vendor/symfony/console/Command/Command.php(341): Illuminate\Console\Command->execute() +
#29 /var/www/html/vendor/laravel/framework/src/Illuminate/Console/Command.php(180): Symfony\Component\Console\Command\Command->run() +
#30 /var/www/html/vendor/symfony/console/Application.php(1102): Illuminate\Console\Command->run() +
#31 /var/www/html/vendor/symfony/console/Application.php(356): Symfony\Component\Console\Application->doRunCommand() +
#32 /var/www/html/vendor/symfony/console/Application.php(195): Symfony\Component\Console\Application->doRun() +
#33 /var/www/html/vendor/laravel/framework/src/Illuminate/Foundation/Console/Kernel.php(198): Symfony\Component\Console\Application->run() +
#34 /var/www/html/artisan(35): Illuminate\Foundation\Console\Kernel->handle() +
#35 {main}

12
dev-scripts/fetch_ids.ps1 Normal file
View file

@ -0,0 +1,12 @@
$token = Get-Content 'c:\Users\Administrator\.ssh\coolify-redbull-token'
$baseUrl = "https://redbull.rede5.com.br/api/v1"
Write-Host "Fetching Servers..."
$serversUrl = "$baseUrl/servers"
$servers = Invoke-RestMethod -Uri $serversUrl -Headers @{Authorization = "Bearer $token" } -Method Get
$servers | ConvertTo-Json -Depth 3 | Out-File -Encoding ASCII c:\dev\servers_ascii.json
Write-Host "Fetching Projects..."
$projectsUrl = "$baseUrl/projects"
$projects = Invoke-RestMethod -Uri $projectsUrl -Headers @{Authorization = "Bearer $token" } -Method Get
$projects | ConvertTo-Json -Depth 3 | Out-File -Encoding ASCII c:\dev\projects_ascii.json

View file

@ -0,0 +1,7 @@
$token = Get-Content 'c:\Users\Administrator\.ssh\coolify-redbull-token'
$baseUrl = "https://redbull.rede5.com.br/api/v1"
$projectUrl = "$baseUrl/projects/t0c4ss0wkcgwg48g088wkwgs"
Write-Host "Fetching Project Details..."
$project = Invoke-RestMethod -Uri $projectUrl -Headers @{Authorization = "Bearer $token" } -Method Get
$project | ConvertTo-Json -Depth 5 | Out-File -Encoding ASCII c:\dev\project_shared.json

7
dev-scripts/fix_app.sh Normal file
View file

@ -0,0 +1,7 @@
FILE='/var/lib/docker/volumes/forgejo-data/_data/gitea/conf/app.ini'
sed -i 's/^DB_TYPE =.*/DB_TYPE = postgres/' $FILE
sed -i 's/^HOST =.*/HOST = kssgo8ccgkos0kw0c0owgk8o:5432/' $FILE
sed -i 's/^NAME =.*/NAME = forgejo/' $FILE
sed -i 's/^USER =.*/USER = coolify/' $FILE
sed -i 's/^PASSWD =.*/PASSWD = Shared#User#Password#123!4/' $FILE
sed -i 's/^SSL_MODE =.*/SSL_MODE = disable/' $FILE

View file

@ -0,0 +1,2 @@
FILE='/var/lib/docker/volumes/forgejo-data/_data/gitea/conf/app.ini'
sed -i 's/^PASSWD =.*/PASSWD = "Shared#User#Password#123!4"/' $FILE

BIN
dev-scripts/fix_check.sh Normal file

Binary file not shown.

View file

@ -0,0 +1 @@
docker ps --format "{{.Names}}" | while read c; do labels=$(docker inspect $c --format "{{json .Config.Labels}}"); if echo "$labels" | grep -iq "gohorsejobs"; then echo "Container: $c"; echo "$labels" | grep -io "\"traefik.http.routers.[^\"]*\""; fi; done

View file

@ -0,0 +1,2 @@
#!/bin/bash
docker exec 65025b8123a8 bundle exec rails runner "Setting.host_name = 'projetos.rede5.com.br';"

View file

@ -0,0 +1,2 @@
I, [2026-02-28T11:31:12.831760 #425] INFO -- : Increasing database pool size to 17 to match max threads
I, [2026-02-28T11:32:12.665257 #425] INFO -- : Using schema cache file /app/db/schema_cache.yml

View file

@ -0,0 +1,2 @@
FILE='/var/lib/docker/volumes/forgejo-data/_data/gitea/conf/app.ini'
sed -i 's/^PASSWD =.*/PASSWD = Shared#User#Password#123!4/' $FILE

View file

@ -0,0 +1 @@
SELECT docker_compose_raw FROM services WHERE uuid = 'cs80o4sgo440gkwkogo4c44k';

3
dev-scripts/get_logs.sh Normal file
View file

@ -0,0 +1,3 @@
#!/bin/bash
docker exec coolify sqlite3 /var/www/html/database/database.sqlite "SELECT logs FROM application_deployments WHERE application_id = (SELECT id FROM applications WHERE uuid='eosgwscc4g044c884k0ws4gc') ORDER BY created_at DESC LIMIT 1;" > /tmp/out.txt
cat /tmp/out.txt

View file

@ -0,0 +1,349 @@
[
{
"Id": "d6ab43c7ba07cdf1287f847a8cbff733d16b1fd96370edfbb2d4fec90ddc0c5c",
"Created": "2026-02-28T11:01:48.352463779Z",
"Path": "./docker/prod/entrypoint.sh",
"Args": [
"./docker/prod/supervisord"
],
"State": {
"Status": "created",
"Running": false,
"Paused": false,
"Restarting": false,
"OOMKilled": false,
"Dead": false,
"Pid": 0,
"ExitCode": 128,
"Error": "driver failed programming external connectivity on endpoint openproject-cs80o4sgo440gkwkogo4c44k (d801f5ac37bb9c49470538a12cc6af9436087d023eef531da5652165e251a2d1): Bind for 0.0.0.0:8080 failed: port is already allocated",
"StartedAt": "0001-01-01T00:00:00Z",
"FinishedAt": "0001-01-01T00:00:00Z"
},
"Image": "sha256:560aae2c41ce411ef99ab199276b2e5879eb2b2f54b79916abf24651a6c70b03",
"ResolvConfPath": "/var/lib/docker/containers/d6ab43c7ba07cdf1287f847a8cbff733d16b1fd96370edfbb2d4fec90ddc0c5c/resolv.conf",
"HostnamePath": "",
"HostsPath": "/var/lib/docker/containers/d6ab43c7ba07cdf1287f847a8cbff733d16b1fd96370edfbb2d4fec90ddc0c5c/hosts",
"LogPath": "",
"Name": "/openproject-cs80o4sgo440gkwkogo4c44k",
"RestartCount": 0,
"Driver": "overlay2",
"Platform": "linux",
"MountLabel": "",
"ProcessLabel": "",
"AppArmorProfile": "",
"ExecIDs": null,
"HostConfig": {
"Binds": [
"cs80o4sgo440gkwkogo4c44k_openproject-data:/var/lib/openproject:rw"
],
"ContainerIDFile": "",
"LogConfig": {
"Type": "json-file",
"Config": {
"max-file": "3",
"max-size": "10m"
}
},
"NetworkMode": "cs80o4sgo440gkwkogo4c44k",
"PortBindings": {
"80/tcp": [
{
"HostIp": "",
"HostPort": "8080"
}
]
},
"RestartPolicy": {
"Name": "unless-stopped",
"MaximumRetryCount": 0
},
"AutoRemove": false,
"VolumeDriver": "",
"VolumesFrom": null,
"ConsoleSize": [
0,
0
],
"CapAdd": null,
"CapDrop": null,
"CgroupnsMode": "private",
"Dns": null,
"DnsOptions": null,
"DnsSearch": null,
"ExtraHosts": [],
"GroupAdd": null,
"IpcMode": "private",
"Cgroup": "",
"Links": null,
"OomScoreAdj": 0,
"PidMode": "",
"Privileged": false,
"PublishAllPorts": false,
"ReadonlyRootfs": false,
"SecurityOpt": null,
"UTSMode": "",
"UsernsMode": "",
"ShmSize": 67108864,
"Runtime": "runc",
"Isolation": "",
"CpuShares": 0,
"Memory": 0,
"NanoCpus": 0,
"CgroupParent": "",
"BlkioWeight": 0,
"BlkioWeightDevice": null,
"BlkioDeviceReadBps": null,
"BlkioDeviceWriteBps": null,
"BlkioDeviceReadIOps": null,
"BlkioDeviceWriteIOps": null,
"CpuPeriod": 0,
"CpuQuota": 0,
"CpuRealtimePeriod": 0,
"CpuRealtimeRuntime": 0,
"CpusetCpus": "",
"CpusetMems": "",
"Devices": null,
"DeviceCgroupRules": null,
"DeviceRequests": null,
"MemoryReservation": 0,
"MemorySwap": 0,
"MemorySwappiness": null,
"OomKillDisable": null,
"PidsLimit": null,
"Ulimits": null,
"CpuCount": 0,
"CpuPercent": 0,
"IOMaximumIOps": 0,
"IOMaximumBandwidth": 0,
"MaskedPaths": [
"/proc/asound",
"/proc/acpi",
"/proc/kcore",
"/proc/keys",
"/proc/latency_stats",
"/proc/timer_list",
"/proc/timer_stats",
"/proc/sched_debug",
"/proc/scsi",
"/sys/firmware",
"/sys/devices/virtual/powercap"
],
"ReadonlyPaths": [
"/proc/bus",
"/proc/fs",
"/proc/irq",
"/proc/sys",
"/proc/sysrq-trigger"
]
},
"GraphDriver": {
"Data": {
"LowerDir": "/var/lib/docker/overlay2/1810d0cbac25f18481fe82c5d3b9f8bd074a42aca4a3435b5c0731635a6cf8c2-init/diff:/var/lib/docker/overlay2/d1bbb270137a3654b982474a60f4924e155588abfb7e0ca62f676dc8315fc4eb/diff:/var/lib/docker/overlay2/b5444936144556d71fe3585768d7fd4fdefee2c67c9f041fb545fd72ec7b9159/diff:/var/lib/docker/overlay2/9a3ed202a7c9e978e93ead7a8d7953d3ab4586ea11e125bbaaaca2a0f305a019/diff:/var/lib/docker/overlay2/47f829b6444220608b394b7064b357890be543dc9c3a7d9d781b91c378048711/diff:/var/lib/docker/overlay2/8033091562e3cfb43f42edbada0d6d610e43e145d883a1142bb54c6d30ef5dd5/diff:/var/lib/docker/overlay2/31dd8226a5d100873568118ba30a86d45bc2a0de998212e25d11bb2a9b2e9b27/diff:/var/lib/docker/overlay2/59425a2828a268c0496d82e9140d58e367913e19a53a43d2bf8c11c753f6b47c/diff:/var/lib/docker/overlay2/0509b74eb5d28c5319f35a8676ef71f4aab2b1e47dd5b12e8760ff8e94f71071/diff:/var/lib/docker/overlay2/39b0e7edee3b0dedfe7f9d8e9da90558daf8bf8fc7714987130526e66f0936e7/diff:/var/lib/docker/overlay2/d75efe8e455f6c04693eb30cb7aa5c0354fe9d7b381bbee0b877946cf36eaa59/diff:/var/lib/docker/overlay2/a16f19ba9bede38b79deb53fd6a502401951788e4204d436854371b948d5f17a/diff:/var/lib/docker/overlay2/3399a1e865c8f685e0fbcb6f4e71af683e05c630449213027205d6491761dee6/diff:/var/lib/docker/overlay2/965a679bbfb74851368484a16887a6159a283e65c7f6a8129dd6678612bf83e4/diff:/var/lib/docker/overlay2/55538c188470acd7482f3f2850e98cff9d61bd89bb7735b4457b687cf2a6b0d3/diff:/var/lib/docker/overlay2/2dd52e08bb1bf9b21530450eda1e5a9d7a613855da3bb1c7b5d72bab9a29a4b5/diff:/var/lib/docker/overlay2/5d9574081c98a9b26bb33a3624b4fa34df7c4c5ccccb4276452991edf675d787/diff:/var/lib/docker/overlay2/c9bcecb891b01f1bfcd7bb29b922dc356a927a31096f31f4140ea123b585b09a/diff:/var/lib/docker/overlay2/08b34e7794a12260e43a4f231fd265616496169454f34aad98184ee76c87841b/diff:/var/lib/docker/overlay2/9f30f94712c8768ee85c364ed363a988bb09e91476cbcf697c3643689581f7da/diff:/var/lib/docker/overlay2/d4bbc9ea6575992a9ce5471627b5390b48ead0c520cca3058de33c60da0c29e4/diff",
"MergedDir": "/var/lib/docker/overlay2/1810d0cbac25f18481fe82c5d3b9f8bd074a42aca4a3435b5c0731635a6cf8c2/merged",
"UpperDir": "/var/lib/docker/overlay2/1810d0cbac25f18481fe82c5d3b9f8bd074a42aca4a3435b5c0731635a6cf8c2/diff",
"WorkDir": "/var/lib/docker/overlay2/1810d0cbac25f18481fe82c5d3b9f8bd074a42aca4a3435b5c0731635a6cf8c2/work"
},
"Name": "overlay2"
},
"Mounts": [
{
"Type": "volume",
"Name": "cs80o4sgo440gkwkogo4c44k_openproject-data",
"Source": "/var/lib/docker/volumes/cs80o4sgo440gkwkogo4c44k_openproject-data/_data",
"Destination": "/var/lib/openproject",
"Driver": "local",
"Mode": "rw",
"RW": true,
"Propagation": ""
},
{
"Type": "volume",
"Name": "a135f4422064bd8c2a7faa3e8e54f9c025c9d3f21b7f53f5ef2eaf753b9ac49d",
"Source": "/var/lib/docker/volumes/a135f4422064bd8c2a7faa3e8e54f9c025c9d3f21b7f53f5ef2eaf753b9ac49d/_data",
"Destination": "/var/openproject/assets",
"Driver": "local",
"Mode": "",
"RW": true,
"Propagation": ""
},
{
"Type": "volume",
"Name": "23ce770022e24069a8ec9d802130b4b9253d9e0f5ab77a15f0cdeeeffa19af2c",
"Source": "/var/lib/docker/volumes/23ce770022e24069a8ec9d802130b4b9253d9e0f5ab77a15f0cdeeeffa19af2c/_data",
"Destination": "/var/openproject/pgdata",
"Driver": "local",
"Mode": "",
"RW": true,
"Propagation": ""
}
],
"Config": {
"Hostname": "d6ab43c7ba07",
"Domainname": "",
"User": "",
"AttachStdin": false,
"AttachStdout": true,
"AttachStderr": true,
"ExposedPorts": {
"80/tcp": {}
},
"Tty": false,
"OpenStdin": false,
"StdinOnce": false,
"Env": [
"SERVICE_NAME_DB=db",
"DATABASE_URL=postgresql://openproject:openproject@db:5432/openproject",
"COOLIFY_URL=https://projetos.rede5.com.br",
"COOLIFY_CONTAINER_NAME=openproject-cs80o4sgo440gkwkogo4c44k",
"COOLIFY_FQDN=projetos.rede5.com.br",
"COOLIFY_RESOURCE_UUID=cs80o4sgo440gkwkogo4c44k",
"SECRET_KEY_BASE=mysecret",
"SERVICE_NAME_OPENPROJECT=openproject",
"PATH=/usr/local/bundle/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin",
"LANG=C.UTF-8",
"RUBY_VERSION=3.3.4",
"RUBY_DOWNLOAD_URL=https://cache.ruby-lang.org/pub/ruby/3.3/ruby-3.3.4.tar.xz",
"RUBY_DOWNLOAD_SHA256=1caaee9a5a6befef54bab67da68ace8d985e4fb59cd17ce23c28d9ab04f4ddad",
"GEM_HOME=/usr/local/bundle",
"BUNDLE_SILENCE_ROOT_WARNING=1",
"BUNDLE_APP_CONFIG=/usr/local/bundle",
"USE_JEMALLOC=false",
"DEBIAN_FRONTEND=noninteractive",
"BUNDLE_JOBS=8",
"BUNDLE_RETRY=3",
"BUNDLE_WITHOUT=development:test",
"DOCKER=1",
"APP_USER=app",
"APP_PATH=/app",
"APP_DATA_PATH=/var/openproject/assets",
"PGVERSION=13",
"CURRENT_PGVERSION=13",
"NEXT_PGVERSION=15",
"PGBIN=/usr/lib/postgresql/13/bin",
"RAILS_ENV=production",
"RAILS_LOG_TO_STDOUT=1",
"RAILS_SERVE_STATIC_FILES=1",
"OPENPROJECT_EDITION=standard",
"OPENPROJECT_INSTALLATION__TYPE=docker",
"OPENPROJECT_ATTACHMENTS__STORAGE__PATH=/var/openproject/assets/files",
"OPENPROJECT_RAILS__CACHE__STORE=memcache",
"OPENPROJECT_ANGULAR_UGLIFY=true",
"PGDATA=/var/openproject/pgdata",
"GOSU_VERSION=1.17"
],
"Cmd": [
"./docker/prod/supervisord"
],
"Image": "openproject/openproject:14",
"Volumes": {
"/var/openproject/assets": {},
"/var/openproject/pgdata": {}
},
"WorkingDir": "/app",
"Entrypoint": [
"./docker/prod/entrypoint.sh"
],
"OnBuild": null,
"Labels": {
"caddy_0": "https://projetos.rede5.com.br",
"caddy_0.encode": "zstd gzip",
"caddy_0.handle_path": "/*",
"caddy_0.handle_path.0_reverse_proxy": "{{upstreams}}",
"caddy_0.header": "-Server",
"caddy_0.try_files": "{path} /index.html /index.php",
"caddy_ingress_network": "cs80o4sgo440gkwkogo4c44k",
"com.docker.compose.config-hash": "67a84a31482d6687ea099d736e57b0897389c26bd2cdb5cd4bfdf6a856fd4e2f",
"com.docker.compose.container-number": "1",
"com.docker.compose.depends_on": "",
"com.docker.compose.image": "sha256:560aae2c41ce411ef99ab199276b2e5879eb2b2f54b79916abf24651a6c70b03",
"com.docker.compose.oneoff": "False",
"com.docker.compose.project": "cs80o4sgo440gkwkogo4c44k",
"com.docker.compose.project.config_files": "/data/coolify/services/cs80o4sgo440gkwkogo4c44k/docker-compose.yml",
"com.docker.compose.project.working_dir": "/data/coolify/services/cs80o4sgo440gkwkogo4c44k",
"com.docker.compose.service": "openproject",
"com.docker.compose.version": "5.0.2",
"coolify.environmentName": "production",
"coolify.managed": "true",
"coolify.name": "openproject-cs80o4sgo440gkwkogo4c44k",
"coolify.projectName": "openproject",
"coolify.pullRequestId": "0",
"coolify.resourceName": "openproject",
"coolify.service.subId": "19",
"coolify.service.subName": "openproject",
"coolify.service.subType": "application",
"coolify.serviceId": "6",
"coolify.serviceName": "openproject",
"coolify.type": "service",
"coolify.version": "4.0.0-beta.463",
"io.artifacthub.package.logo-url": "https://raw.githubusercontent.com/opf/openproject/refs/heads/dev/docker/prod/logo.png",
"io.artifacthub.package.readme-url": "https://raw.githubusercontent.com/opf/openproject/refs/heads/dev/docker/prod/README.md",
"maintainer": "operations@openproject.com",
"org.opencontainers.image.created": "2024-10-29T09:40:25.462Z",
"org.opencontainers.image.description": "OpenProject is the leading open source project management software.",
"org.opencontainers.image.documentation": "https://www.openproject.org/docs/installation-and-operations/installation/",
"org.opencontainers.image.licenses": "GPL-3.0",
"org.opencontainers.image.revision": "d9ae03127af6db7332dd0d358c9cd47715a21dbd",
"org.opencontainers.image.source": "https://github.com/opf/openproject",
"org.opencontainers.image.title": "openproject",
"org.opencontainers.image.url": "https://github.com/opf/openproject",
"org.opencontainers.image.vendor": "OpenProject GmbH",
"org.opencontainers.image.version": "14.6.3",
"traefik.enable": "true",
"traefik.http.middlewares.gzip.compress": "true",
"traefik.http.middlewares.redirect-to-https.redirectscheme.scheme": "https",
"traefik.http.routers.http-0-cs80o4sgo440gkwkogo4c44k-openproject.entryPoints": "http",
"traefik.http.routers.http-0-cs80o4sgo440gkwkogo4c44k-openproject.middlewares": "redirect-to-https",
"traefik.http.routers.http-0-cs80o4sgo440gkwkogo4c44k-openproject.rule": "Host(`projetos.rede5.com.br`) && PathPrefix(`/`)",
"traefik.http.routers.https-0-cs80o4sgo440gkwkogo4c44k-openproject.entryPoints": "https",
"traefik.http.routers.https-0-cs80o4sgo440gkwkogo4c44k-openproject.middlewares": "gzip",
"traefik.http.routers.https-0-cs80o4sgo440gkwkogo4c44k-openproject.rule": "Host(`projetos.rede5.com.br`) && PathPrefix(`/`)",
"traefik.http.routers.https-0-cs80o4sgo440gkwkogo4c44k-openproject.tls": "true",
"traefik.http.routers.https-0-cs80o4sgo440gkwkogo4c44k-openproject.tls.certresolver": "letsencrypt"
}
},
"NetworkSettings": {
"Bridge": "",
"SandboxID": "",
"SandboxKey": "",
"Ports": {},
"HairpinMode": false,
"LinkLocalIPv6Address": "",
"LinkLocalIPv6PrefixLen": 0,
"SecondaryIPAddresses": null,
"SecondaryIPv6Addresses": null,
"EndpointID": "",
"Gateway": "",
"GlobalIPv6Address": "",
"GlobalIPv6PrefixLen": 0,
"IPAddress": "",
"IPPrefixLen": 0,
"IPv6Gateway": "",
"MacAddress": "",
"Networks": {
"cs80o4sgo440gkwkogo4c44k": {
"IPAMConfig": null,
"Links": null,
"Aliases": [
"openproject-cs80o4sgo440gkwkogo4c44k",
"openproject"
],
"MacAddress": "",
"DriverOpts": null,
"NetworkID": "3c9eb8f0802d176b6d7ffc2e713dcd2b26668ef4c378b235d3773586e64a7ce3",
"EndpointID": "",
"Gateway": "",
"IPAddress": "",
"IPPrefixLen": 0,
"IPv6Gateway": "",
"GlobalIPv6Address": "",
"GlobalIPv6PrefixLen": 0,
"DNSNames": [
"openproject-cs80o4sgo440gkwkogo4c44k",
"openproject",
"d6ab43c7ba07"
]
}
}
}
}
]

BIN
dev-scripts/latest_dc.txt Normal file

Binary file not shown.

View file

@ -0,0 +1,93 @@
services:
openproject:
image: 'openproject/openproject:14'
restart: unless-stopped
environment:
DATABASE_URL: 'postgresql://openproject:openproject@db:5432/openproject'
SECRET_KEY_BASE: mysecret
COOLIFY_RESOURCE_UUID: cs80o4sgo440gkwkogo4c44k
COOLIFY_CONTAINER_NAME: openproject-cs80o4sgo440gkwkogo4c44k
COOLIFY_FQDN: projetos.rede5.com.br
COOLIFY_URL: 'https://projetos.rede5.com.br'
SERVICE_NAME_OPENPROJECT: openproject
SERVICE_NAME_DB: db
volumes:
- 'cs80o4sgo440gkwkogo4c44k_openproject-data:/var/lib/openproject'
container_name: openproject-cs80o4sgo440gkwkogo4c44k
labels:
- coolify.managed=true
- coolify.version=4.0.0-beta.463
- coolify.serviceId=6
- coolify.type=service
- coolify.name=openproject-cs80o4sgo440gkwkogo4c44k
- coolify.resourceName=openproject
- coolify.projectName=openproject
- coolify.serviceName=openproject
- coolify.environmentName=production
- coolify.pullRequestId=0
- coolify.service.subId=19
- coolify.service.subType=application
- coolify.service.subName=openproject
- traefik.enable=true
- traefik.http.middlewares.gzip.compress=true
- traefik.http.middlewares.redirect-to-https.redirectscheme.scheme=https
- traefik.http.routers.http-0-cs80o4sgo440gkwkogo4c44k-openproject.entryPoints=http
- traefik.http.routers.http-0-cs80o4sgo440gkwkogo4c44k-openproject.middlewares=redirect-to-https
- 'traefik.http.routers.http-0-cs80o4sgo440gkwkogo4c44k-openproject.rule=Host(`projetos.rede5.com.br`) && PathPrefix(`/`)'
- traefik.http.routers.https-0-cs80o4sgo440gkwkogo4c44k-openproject.entryPoints=https
- traefik.http.routers.https-0-cs80o4sgo440gkwkogo4c44k-openproject.middlewares=gzip
- 'traefik.http.routers.https-0-cs80o4sgo440gkwkogo4c44k-openproject.rule=Host(`projetos.rede5.com.br`) && PathPrefix(`/`)'
- traefik.http.routers.https-0-cs80o4sgo440gkwkogo4c44k-openproject.tls.certresolver=letsencrypt
- traefik.http.routers.https-0-cs80o4sgo440gkwkogo4c44k-openproject.tls=true
- 'caddy_0.encode=zstd gzip'
- 'caddy_0.handle_path.0_reverse_proxy={{upstreams}}'
- 'caddy_0.handle_path=/*'
- caddy_0.header=-Server
- 'caddy_0.try_files={path} /index.html /index.php'
- 'caddy_0=https://projetos.rede5.com.br'
- caddy_ingress_network=cs80o4sgo440gkwkogo4c44k
networks:
cs80o4sgo440gkwkogo4c44k: null
env_file:
- .env
db:
image: 'postgres:16'
restart: unless-stopped
environment:
POSTGRES_DB: openproject
POSTGRES_USER: openproject
POSTGRES_PASSWORD: openproject
COOLIFY_RESOURCE_UUID: cs80o4sgo440gkwkogo4c44k
COOLIFY_CONTAINER_NAME: db-cs80o4sgo440gkwkogo4c44k
SERVICE_NAME_OPENPROJECT: openproject
SERVICE_NAME_DB: db
volumes:
- 'cs80o4sgo440gkwkogo4c44k_postgres-data:/var/lib/postgresql/data'
container_name: db-cs80o4sgo440gkwkogo4c44k
labels:
- coolify.managed=true
- coolify.version=4.0.0-beta.463
- coolify.serviceId=6
- coolify.type=service
- coolify.name=db-cs80o4sgo440gkwkogo4c44k
- coolify.resourceName=openproject
- coolify.projectName=openproject
- coolify.serviceName=db
- coolify.environmentName=production
- coolify.pullRequestId=0
- coolify.service.subId=3
- coolify.service.subType=database
- coolify.service.subName=db
networks:
cs80o4sgo440gkwkogo4c44k: null
env_file:
- .env
volumes:
cs80o4sgo440gkwkogo4c44k_openproject-data:
name: cs80o4sgo440gkwkogo4c44k_openproject-data
cs80o4sgo440gkwkogo4c44k_postgres-data:
name: cs80o4sgo440gkwkogo4c44k_postgres-data
networks:
cs80o4sgo440gkwkogo4c44k:
name: cs80o4sgo440gkwkogo4c44k
external: true

10
dev-scripts/list_deps.ps1 Normal file
View file

@ -0,0 +1,10 @@
$token = Get-Content 'c:\Users\Administrator\.ssh\coolify-redbull-token'
$baseUrl = "https://redbull.rede5.com.br/api/v1"
$backendUuid = "eosgwscc4g044c884k0ws4gc"
Write-Host "Buscando deployments do backend..."
$deps = Invoke-RestMethod -Uri "$baseUrl/deployments" -Headers @{Authorization = "Bearer $token" } -Method Get
# Filter by application UUID if possible
$filteredDeps = $deps.data | Where-Object { $_.application_id -in @("eosgwscc4g044c884k0ws4gc-1654363294711", "eosgwscc4g044c884k0ws4gc", 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20) }
$deps.data | Select-Object -First 10 | ConvertTo-Json -Depth 2

View file

@ -0,0 +1 @@
Buscando deployments do backend...

28
dev-scripts/logs_out.txt Normal file
View file

@ -0,0 +1,28 @@
Buscando deployments do backend...
Invoke-RestMethod : The
remote server returned an
error: (404) Not Found.
At
C:\dev\logs_q1food.ps1:6
char:9
+ $deps =
Invoke-RestMethod -Uri "$b
aseUrl/applications/$backe
ndUuid/de ...
+ ~~~~~~~~~~~~~~~~
~~~~~~~~~~~~~~~~~~~~~~~~~~
~~~~~~~~~~~~~~~~~~~
+ CategoryInfo
: InvalidOperation
: (System.Net.HttpWeb
Request:HttpWebReques
t) [Invoke-RestMethod
], WebException
+ FullyQualifiedError
Id : WebCmdletWebResp
onseException,Microso
ft.PowerShell.Command
s.InvokeRestMethodCom
mand
Nenhum deploy encontrado.

View file

@ -0,0 +1,21 @@
$token = Get-Content 'c:\Users\Administrator\.ssh\coolify-redbull-token'
$baseUrl = "https://redbull.rede5.com.br/api/v1"
$backendUuid = "eosgwscc4g044c884k0ws4gc"
Write-Host "Buscando deployments do backend..."
$deps = Invoke-RestMethod -Uri "$baseUrl/applications/$backendUuid/deployments?per_page=1" -Headers @{Authorization = "Bearer $token" } -Method Get
if ($deps -and $deps.Length -gt 0) {
$lastDepId = $deps[0].deployment_uuid
Write-Host "Ultimo deploy: $lastDepId"
Write-Host "Status: $($deps[0].status)"
# Get logs
$logsUrl = "$baseUrl/deployments/$lastDepId"
$logResponse = Invoke-RestMethod -Uri $logsUrl -Headers @{Authorization = "Bearer $token" } -Method Get
Write-Host "Logs:"
$logResponse.logs | Select-Object -Last 20
}
else {
Write-Host "Nenhum deploy encontrado."
}

View file

@ -0,0 +1,54 @@
version: '3.8'
services:
openproject:
image: 'openproject/openproject:14'
restart: unless-stopped
environment:
- 'DATABASE_URL=postgresql://coolify:Shared%23User%23Password%23123%214@kssgo8ccgkos0kw0c0owgk8o:5432/postgres_db'
- SECRET_KEY_BASE=mysecret
- COOLIFY_RESOURCE_UUID=cs80o4sgo440gkwkogo4c44k
- COOLIFY_CONTAINER_NAME=openproject-cs80o4sgo440gkwkogo4c44k
- COOLIFY_FQDN=projetos.rede5.com.br
- COOLIFY_URL=https://projetos.rede5.com.br
- SERVICE_NAME_OPENPROJECT=openproject
volumes:
- 'cs80o4sgo440gkwkogo4c44k_openproject-data:/var/lib/openproject'
networks:
- cs80o4sgo440gkwkogo4c44k
- coolify
container_name: openproject-cs80o4sgo440gkwkogo4c44k
labels:
- coolify.managed=true
- coolify.version=4.0.0-beta.463
- coolify.serviceId=6
- coolify.type=service
- coolify.name=openproject-cs80o4sgo440gkwkogo4c44k
- coolify.resourceName=openproject
- coolify.projectName=openproject
- coolify.serviceName=openproject
- coolify.environmentName=production
- coolify.pullRequestId=0
- coolify.service.subId=19
- coolify.service.subType=application
- coolify.service.subName=openproject
- traefik.enable=true
- traefik.http.middlewares.gzip.compress=true
- traefik.http.middlewares.redirect-to-https.redirectscheme.scheme=https
- traefik.http.routers.http-0-cs80o4sgo440gkwkogo4c44k-openproject.entryPoints=http
- traefik.http.routers.http-0-cs80o4sgo440gkwkogo4c44k-openproject.middlewares=redirect-to-https
- 'traefik.http.routers.http-0-cs80o4sgo440gkwkogo4c44k-openproject.rule=Host(`projetos.rede5.com.br`) && PathPrefix(`/`)'
- traefik.http.routers.https-0-cs80o4sgo440gkwkogo4c44k-openproject.entryPoints=https
- traefik.http.routers.https-0-cs80o4sgo440gkwkogo4c44k-openproject.middlewares=gzip
- 'traefik.http.routers.https-0-cs80o4sgo440gkwkogo4c44k-openproject.rule=Host(`projetos.rede5.com.br`) && PathPrefix(`/`)'
- traefik.http.routers.https-0-cs80o4sgo440gkwkogo4c44k-openproject.tls.certresolver=letsencrypt
- traefik.http.routers.https-0-cs80o4sgo440gkwkogo4c44k-openproject.tls=true
- traefik.http.services.openproject-cs80o4sgo440gkwkogo4c44k.loadbalancer.server.port=8080
volumes:
cs80o4sgo440gkwkogo4c44k_openproject-data:
name: cs80o4sgo440gkwkogo4c44k_openproject-data
networks:
cs80o4sgo440gkwkogo4c44k:
name: cs80o4sgo440gkwkogo4c44k
external: true
coolify:
external: true

BIN
dev-scripts/networks.json Normal file

Binary file not shown.

View file

@ -0,0 +1 @@
{"coolify":{"IPAMConfig":null,"Links":null,"Aliases":["kssgo8ccgkos0kw0c0owgk8o","kssgo8ccgkos0kw0c0owgk8o"],"MacAddress":"02:42:0a:00:01:1a","DriverOpts":null,"NetworkID":"25f7b240f61e0d170ed727f55f2ea8959d9f603fd90fe1d73a02021f29d421e1","EndpointID":"cff39b04d49ccc9795de81701df6febd57700bbca8a8412a41ac577b15f2cdac","Gateway":"10.0.1.1","IPAddress":"10.0.1.26","IPPrefixLen":24,"IPv6Gateway":"fde4:cfdd:2ecd::1","GlobalIPv6Address":"fde4:cfdd:2ecd::1a","GlobalIPv6PrefixLen":64,"DNSNames":["kssgo8ccgkos0kw0c0owgk8o","cad62b47b11d"]}}

BIN
dev-scripts/old_compose.yml Normal file

Binary file not shown.

View file

@ -0,0 +1,23 @@
version: '3.8'
services:
openproject:
image: 'openproject/openproject:14'
restart: unless-stopped
environment:
- 'DATABASE_URL=postgresql://openproject:openproject@db:5432/openproject'
- SECRET_KEY_BASE=mysecret
volumes:
- 'openproject_data:/var/lib/openproject'
db:
image: 'postgres:16'
restart: unless-stopped
environment:
- POSTGRES_DB=openproject
- POSTGRES_USER=openproject
- POSTGRES_PASSWORD=openproject
volumes:
- 'postgres_data:/var/lib/postgresql/data'
volumes:
openproject_data: null
postgres_data: null

10
dev-scripts/op.ps1 Normal file
View file

@ -0,0 +1,10 @@
$token = Get-Content 'c:\Users\Administrator\.ssh\coolify-redbull-token'
$baseUrl = "https://redbull.rede5.com.br/api/v1"
$serviceUuid = "cs80o4sgo440gkwkogo4c44k"
$appUuid = "hwo8cc88g4sgo0kk48gg0488" # from op_details_ascii.json
# Let's try to update the FQDN of the application inside the service? Or the service itself?
# For services, we usually just update it. Wait, the API might not support updating service FQDN easily without knowing the schema. Let's look at the coolify db schema to know how to do it.
# Actually, the FQDN is in the service_applications table or applications table?
# In op_details_ascii.json, it's applications[0].fqdn. So we can update FQDN.
# Or maybe easier to just start the service first to see if it even runs?

BIN
dev-scripts/op_details.json Normal file

Binary file not shown.

View file

@ -0,0 +1,6 @@
$token = Get-Content 'c:\Users\Administrator\.ssh\coolify-redbull-token'
$baseUrl = "https://redbull.rede5.com.br/api/v1"
$srvResponse = Invoke-RestMethod -Uri "$baseUrl/services" -Headers @{Authorization = "Bearer $token" } -Method Get
$srvs = $srvResponse | Where-Object { $_.name -match 'open' }
$srvs | ConvertTo-Json -Depth 5

View file

@ -0,0 +1,160 @@
{
"uuid": "cs80o4sgo440gkwkogo4c44k",
"name": "openproject",
"environment_id": 15,
"created_at": "2026-02-27T10:54:04.000000Z",
"updated_at": "2026-02-27T10:54:21.000000Z",
"server_id": 0,
"description": "",
"docker_compose_raw": "version: \u00273.8\u0027\nservices:\n openproject:\n image: \u0027openproject/community:14\u0027\n restart: unless-stopped\n ports:\n - \u00278080:80\u0027\n environment:\n - \u0027DATABASE_URL=postgresql://openproject:openproject@db:5432/openproject\u0027\n - SECRET_KEY_BASE=mysecret\n volumes:\n - \u0027openproject_data:/var/lib/openproject\u0027\n db:\n image: \u0027postgres:16\u0027\n restart: unless-stopped\n environment:\n - POSTGRES_DB=openproject\n - POSTGRES_USER=openproject\n - POSTGRES_PASSWORD=openproject\n volumes:\n - \u0027postgres_data:/var/lib/postgresql/data\u0027\nvolumes:\n openproject_data: null\n postgres_data: null\n",
"docker_compose": "services:\n openproject:\n image: \u0027openproject/community:14\u0027\n restart: unless-stopped\n ports:\n - \u00278080:80\u0027\n environment:\n DATABASE_URL: \u0027postgresql://openproject:openproject@db:5432/openproject\u0027\n SECRET_KEY_BASE: mysecret\n COOLIFY_RESOURCE_UUID: cs80o4sgo440gkwkogo4c44k\n COOLIFY_CONTAINER_NAME: openproject-cs80o4sgo440gkwkogo4c44k\n SERVICE_NAME_OPENPROJECT: openproject\n SERVICE_NAME_DB: db\n volumes:\n - \u0027cs80o4sgo440gkwkogo4c44k_openproject-data:/var/lib/openproject\u0027\n container_name: openproject-cs80o4sgo440gkwkogo4c44k\n labels:\n - coolify.managed=true\n - coolify.version=4.0.0-beta.463\n - coolify.serviceId=6\n - coolify.type=service\n - coolify.name=openproject-cs80o4sgo440gkwkogo4c44k\n - coolify.resourceName=openproject\n - coolify.projectName=openproject\n - coolify.serviceName=openproject\n - coolify.environmentName=production\n - coolify.pullRequestId=0\n - coolify.service.subId=19\n - coolify.service.subType=application\n - coolify.service.subName=openproject\n networks:\n cs80o4sgo440gkwkogo4c44k: null\n env_file:\n - .env\n db:\n image: \u0027postgres:16\u0027\n restart: unless-stopped\n environment:\n POSTGRES_DB: openproject\n POSTGRES_USER: openproject\n POSTGRES_PASSWORD: openproject\n COOLIFY_RESOURCE_UUID: cs80o4sgo440gkwkogo4c44k\n COOLIFY_CONTAINER_NAME: db-cs80o4sgo440gkwkogo4c44k\n SERVICE_NAME_OPENPROJECT: openproject\n SERVICE_NAME_DB: db\n volumes:\n - \u0027cs80o4sgo440gkwkogo4c44k_postgres-data:/var/lib/postgresql/data\u0027\n container_name: db-cs80o4sgo440gkwkogo4c44k\n labels:\n - coolify.managed=true\n - coolify.version=4.0.0-beta.463\n - coolify.serviceId=6\n - coolify.type=service\n - coolify.name=db-cs80o4sgo440gkwkogo4c44k\n - coolify.resourceName=openproject\n - coolify.projectName=openproject\n - coolify.serviceName=db\n - coolify.environmentName=production\n - coolify.pullRequestId=0\n - coolify.service.subId=3\n - coolify.service.subType=database\n - coolify.service.subName=db\n networks:\n cs80o4sgo440gkwkogo4c44k: null\n env_file:\n - .env\nvolumes:\n cs80o4sgo440gkwkogo4c44k_openproject-data:\n name: cs80o4sgo440gkwkogo4c44k_openproject-data\n cs80o4sgo440gkwkogo4c44k_postgres-data:\n name: cs80o4sgo440gkwkogo4c44k_postgres-data\nnetworks:\n cs80o4sgo440gkwkogo4c44k:\n name: cs80o4sgo440gkwkogo4c44k\n external: true\n",
"destination_type": "App\\Models\\StandaloneDocker",
"destination_id": 0,
"deleted_at": null,
"connect_to_docker_network": false,
"config_hash": "052af8bbb0d10708304efff4bf180412",
"service_type": null,
"is_container_label_escape_enabled": true,
"compose_parsing_version": "5",
"laravel_through_key": 9,
"server_status": true,
"status": "exited",
"server": {
"id": 0,
"uuid": "m844o4gkwkwcc0k48swgs8c8",
"name": "localhost",
"description": "This is the server where Coolify is running on. Don\u0027t delete this!",
"ip": "host.docker.internal",
"port": 22,
"user": "root",
"team_id": 0,
"private_key_id": 0,
"proxy": {
"type": "TRAEFIK",
"status": "running",
"last_saved_settings": null,
"last_applied_settings": null,
"redirect_enabled": true,
"force_stop": false
},
"created_at": "2026-02-16T12:39:11.000000Z",
"updated_at": "2026-02-27T14:43:09.000000Z",
"unreachable_notification_sent": false,
"unreachable_count": 0,
"high_disk_usage_notification_sent": false,
"log_drain_notification_sent": false,
"swarm_cluster": null,
"validation_logs": null,
"sentinel_updated_at": "2026-02-27 14:43:09",
"deleted_at": null,
"ip_previous": null,
"hetzner_server_id": null,
"cloud_provider_token_id": null,
"hetzner_server_status": null,
"is_validating": false,
"detected_traefik_version": "3.6.8",
"traefik_outdated_info": null,
"is_coolify_host": true,
"settings": {
"id": 1,
"is_swarm_manager": false,
"is_jump_server": false,
"is_build_server": false,
"is_reachable": true,
"is_usable": true,
"server_id": 0,
"created_at": "2026-02-16T12:39:11.000000Z",
"updated_at": "2026-02-16T12:47:49.000000Z",
"wildcard_domain": null,
"is_cloudflare_tunnel": false,
"is_logdrain_newrelic_enabled": false,
"logdrain_newrelic_license_key": null,
"logdrain_newrelic_base_uri": null,
"is_logdrain_highlight_enabled": false,
"logdrain_highlight_project_id": null,
"is_logdrain_axiom_enabled": false,
"logdrain_axiom_dataset_name": null,
"logdrain_axiom_api_key": null,
"is_swarm_worker": false,
"is_logdrain_custom_enabled": false,
"logdrain_custom_config": null,
"logdrain_custom_config_parser": null,
"concurrent_builds": 2,
"dynamic_timeout": 3600,
"force_disabled": false,
"is_metrics_enabled": false,
"generate_exact_labels": false,
"force_docker_cleanup": true,
"docker_cleanup_frequency": "0 0 * * *",
"docker_cleanup_threshold": 80,
"server_timezone": "UTC",
"delete_unused_volumes": false,
"delete_unused_networks": false,
"is_sentinel_enabled": true,
"sentinel_token": "eyJpdiI6IlpzSVdrV0p2UktKY1N3VGpDUm4yQXc9PSIsInZhbHVlIjoiTC9KS3ppK3FYeWJCa1dzYXZOWDFFWHErdkhXWkVFT1ZRNHdNTVVacHVHS3M0UkJHS2JzZUtZbHFtNW16ZGlzV3plRlUzVWQ5WFRVQm1IdW1ETWdSTnc9PSIsIm1hYyI6IjRkNjgzMzU2MWE1YWExYjE2MTkyNDM3ZDg2MTNmODYxNWY1Mzk5YjEwM2EwNWY5YjIyNTk5MDJkNGY2NGU2NjkiLCJ0YWciOiIifQ==",
"sentinel_metrics_refresh_rate_seconds": 10,
"sentinel_metrics_history_days": 7,
"sentinel_push_interval_seconds": 60,
"sentinel_custom_url": "http://host.docker.internal:8000",
"server_disk_usage_notification_threshold": 80,
"is_sentinel_debug_enabled": false,
"server_disk_usage_check_frequency": "0 23 * * *",
"is_terminal_enabled": true,
"deployment_queue_limit": 25,
"disable_application_image_retention": false
}
},
"applications": [
{
"id": 19,
"uuid": "hwo8cc88g4sgo0kk48gg0488",
"name": "openproject",
"human_name": null,
"description": null,
"fqdn": null,
"ports": "8080:80",
"exposes": null,
"status": "exited",
"service_id": 6,
"created_at": "2026-02-27T10:54:04.000000Z",
"updated_at": "2026-02-27T12:24:05.000000Z",
"exclude_from_status": false,
"required_fqdn": false,
"image": "openproject/community:14",
"is_log_drain_enabled": false,
"is_include_timestamps": false,
"deleted_at": null,
"is_gzip_enabled": true,
"is_stripprefix_enabled": true,
"last_online_at": "2026-02-27 12:24:05",
"is_migrated": false
}
],
"databases": [
{
"id": 3,
"uuid": "dwk8cs48cw40kgww00ss40sg",
"name": "db",
"human_name": null,
"description": null,
"ports": "",
"exposes": null,
"status": "exited",
"service_id": 6,
"created_at": "2026-02-27T10:54:04.000000Z",
"updated_at": "2026-02-27T12:24:05.000000Z",
"exclude_from_status": false,
"image": "postgres:16",
"public_port": null,
"is_public": false,
"is_log_drain_enabled": false,
"is_include_timestamps": false,
"deleted_at": null,
"is_gzip_enabled": true,
"is_stripprefix_enabled": true,
"last_online_at": "2026-02-27 12:24:05",
"is_migrated": false,
"custom_type": null
}
]
}

BIN
dev-scripts/op_front.html Normal file

Binary file not shown.

99
dev-scripts/op_logs.txt Normal file
View file

@ -0,0 +1,99 @@
??? TimeEntryActivitySeeder
*** Skipping time entry activities as there are already some configured
??? ColorSeeder
*** Skipping colors as there are already some configured
??? ColorSchemeSeeder
*** Skipping open color palette as there are already some configured
??? WorkflowSeeder
*** Skipping types, statuses and workflows as there are already some configured
??? PrioritySeeder
*** Skipping priorities as there are already some configured
??? SettingSeeder
??? ProjectCustomFieldSectionSeeder
*** Skipping project custom field sections as there are already some configured
Loading discovered seeders: Backlogs::SettingSeeder, Documents::EnumerationSeeder
??? Backlogs::SettingSeeder
*** Skipping BasicData::Backlogs::SettingSeeder
??? Documents::EnumerationSeeder
*** Skipping document categories as there are already some configured
*** Seeding admin user
*** No need to seed an admin as there already is one.
*** Seeding OAuth applications
*** Seeding demo data
??? GroupSeeder
??? Creating groups
??? GlobalQuerySeeder
??? Creating global queries
??? ProjectsSeeder
*** Skipping DemoData::ProjectsSeeder
??? OverviewSeeder
*** Skipping DemoData::OverviewSeeder
*** Loading action_view_railtie seed data
*** Loading active_storage seed data
*** Loading action_cable_engine seed data
*** Loading action_mailbox seed data
*** Loading action_text seed data
*** Loading view_component_engine seed data
*** Loading primer_view_components seed data
*** Loading doorkeeper_engine seed data
*** Loading date_validator_engine seed data
*** Loading good_job seed data
*** Loading ok_computer seed data
*** Loading lookbook seed data
*** Loading turbo seed data
*** Loading turbo_power_engine seed data
*** Loading openproject_auth_plugins seed data
*** Loading openproject_auth_saml seed data
*** Loading openproject_openid_connect seed data
*** Loading openproject_documents seed data
*** Loading openproject_xls_export seed data
*** Loading costs seed data
*** Loading openproject_reporting seed data
*** Loading openproject_meeting seed data
*** Loading openproject_backlogs seed data
*** Loading openproject_avatars seed data
*** Loading openproject_two_factor_authentication seed data
*** Loading openproject_webhooks seed data
*** Loading openproject_github_integration seed data
*** Loading openproject_gitlab_integration seed data
*** Loading openproject_ldap_groups seed data
*** Loading openproject_recaptcha seed data
*** Loading openproject_job_status seed data
*** Loading grids_engine seed data
*** Loading my_page_engine seed data
*** Loading dashboards seed data
*** Loading openproject_boards seed data
*** Loading overviews seed data
*** Loading budgets_engine seed data
*** Loading openproject_team_planner seed data
*** Loading openproject_gantt seed data
*** Loading openproject_calendar seed data
*** Loading openproject_storages seed data
*** Loading openproject_bim seed data
*** Seeding data from environment variables
??? LdapSeeder
*** Skipping EnvData::LdapSeeder
Stopping memcached: memcached.
-----> Database setup finished.
On first installation, the default admin credentials are login: admin, password: admin
-----> Launching supervisord...
2026-02-28 11:21:35,881 INFO Set uid to user 0 succeeded
2026-02-28 11:21:35,908 INFO RPC interface 'supervisor' initialized
2026-02-28 11:21:35,908 CRIT Server 'unix_http_server' running without any HTTP authentication checking
2026-02-28 11:21:35,909 INFO supervisord started with pid 1
2026-02-28 11:21:36,917 INFO spawned: 'apache2' with pid 96
2026-02-28 11:21:36,925 INFO spawned: 'web' with pid 97
2026-02-28 11:21:36,930 INFO spawned: 'worker' with pid 99
2026-02-28 11:21:36,943 INFO spawned: 'memcached' with pid 100
2026-02-28 11:21:36,964 INFO spawned: 'postfix' with pid 103
2026-02-28 11:21:37,388 INFO success: postfix entered RUNNING state, process has stayed up for > than 0 seconds (startsecs)
2026-02-28 11:21:37,678 INFO exited: postfix (exit status 0; expected)
2026-02-28 11:21:38,679 INFO success: apache2 entered RUNNING state, process has stayed up for > than 1 seconds (startsecs)
2026-02-28 11:21:38,680 INFO success: web entered RUNNING state, process has stayed up for > than 1 seconds (startsecs)
2026-02-28 11:21:38,680 INFO success: worker entered RUNNING state, process has stayed up for > than 1 seconds (startsecs)
2026-02-28 11:21:38,680 INFO success: memcached entered RUNNING state, process has stayed up for > than 1 seconds (startsecs)
=> Booting Puma
=> Rails 7.1.4 application starting in production
=> Run `bin/rails server --help` for more startup options
I, [2026-02-28T11:22:07.132878 #114] INFO -- : Increasing database pool size to 17 to match max threads
I, [2026-02-28T11:22:08.941292 #97] INFO -- : Increasing database pool size to 17 to match max threads

35
dev-scripts/op_logs2.txt Normal file
View file

@ -0,0 +1,35 @@
-----> Setting PGVERSION=13 PGBIN=/usr/lib/postgresql/13/bin PGCONF_FILE=/etc/postgresql/13/main/postgresql.conf
-----> Starting the all-in-one OpenProject setup at /app/docker/prod/supervisord...
-----> You're using an external database. Not initializing a local database cluster.
Trying to contact PostgreSQL server instance or waiting for it to come online.
Waiting for postgres server, 10 remaining attempts...
Waiting for postgres server, 9 remaining attempts...
Waiting for postgres server, 8 remaining attempts...
Waiting for postgres server, 7 remaining attempts...
Waiting for postgres server, 6 remaining attempts...
Waiting for postgres server, 5 remaining attempts...
Waiting for postgres server, 4 remaining attempts...
Waiting for postgres server, 3 remaining attempts...
Waiting for postgres server, 2 remaining attempts...
Waiting for postgres server, 1 remaining attempts...
Unable to contact postgres server:
psql: error: could not translate host name "kssgo8ccgkos0kw0c0owgk8o" to address: Temporary failure in name resolution
-----> Setting PGVERSION=13 PGBIN=/usr/lib/postgresql/13/bin PGCONF_FILE=/etc/postgresql/13/main/postgresql.conf
-----> Starting the all-in-one OpenProject setup at /app/docker/prod/supervisord...
-----> You're using an external database. Not initializing a local database cluster.
Trying to contact PostgreSQL server instance or waiting for it to come online.
Waiting for postgres server, 10 remaining attempts...
Waiting for postgres server, 9 remaining attempts...
Waiting for postgres server, 8 remaining attempts...
Waiting for postgres server, 7 remaining attempts...
Waiting for postgres server, 6 remaining attempts...
Waiting for postgres server, 5 remaining attempts...
Waiting for postgres server, 4 remaining attempts...
Waiting for postgres server, 3 remaining attempts...
Waiting for postgres server, 2 remaining attempts...
Waiting for postgres server, 1 remaining attempts...
Unable to contact postgres server:
psql: error: could not translate host name "kssgo8ccgkos0kw0c0owgk8o" to address: Temporary failure in name resolution
-----> Setting PGVERSION=13 PGBIN=/usr/lib/postgresql/13/bin PGCONF_FILE=/etc/postgresql/13/main/postgresql.conf
-----> Starting the all-in-one OpenProject setup at /app/docker/prod/supervisord...
-----> You're using an external database. Not initializing a local database cluster.

BIN
dev-scripts/op_logs3.txt Normal file

Binary file not shown.

View file

@ -0,0 +1,3 @@
-----> Setting PGVERSION=13 PGBIN=/usr/lib/postgresql/13/bin PGCONF_FILE=/etc/postgresql/13/main/postgresql.conf
-----> Starting the all-in-one OpenProject setup at /app/docker/prod/supervisord...
-----> You're using an external database. Not initializing a local database cluster.

BIN
dev-scripts/op_logs4.txt Normal file

Binary file not shown.

View file

@ -0,0 +1,3 @@
-----> Setting PGVERSION=13 PGBIN=/usr/lib/postgresql/13/bin PGCONF_FILE=/etc/postgresql/13/main/postgresql.conf
-----> Starting the all-in-one OpenProject setup at /app/docker/prod/supervisord...
-----> You're using an external database. Not initializing a local database cluster.

BIN
dev-scripts/op_res.txt Normal file

Binary file not shown.

8
dev-scripts/op_res2.txt Normal file
View file

@ -0,0 +1,8 @@
--- APLICACOES ---
--- SERVICOS ---
name status uuid
---- ------ ----
openproject exited cs80o4s...

BIN
dev-scripts/pg_service.txt Normal file

Binary file not shown.

View file

@ -0,0 +1,7 @@
uuid | name
--------------------------+-------------
ewo8008ock84owssw4c0o0co | supabase-db
lc8wg0w440cwsgk844cw8k8k | mariadb
dwk8cs48cw40kgww00ss40sg | db
(3 rows)

BIN
dev-scripts/pg_shared.txt Normal file

Binary file not shown.

View file

@ -0,0 +1,11 @@
uuid | name | postgres_user | postgres_password | postgres_db
--------------------------+-------------------+---------------+--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+---------------
roo44ws40ok8socswgcww0kg | q1total-db | q1total | eyJpdiI6IlNJN1plZk5RNTNDeDk5OW90c3dOZVE9PSIsInZhbHVlIjoiMlk2QlY1allPV2VUa0RKekpzNmczQT09IiwibWFjIjoiNWFkY2IwZTBhMWUxYTJkYWNjMWRlYjBhOWFkODg4MzkyNTY5YTk4NDA5OGRiZGViOTU1MGM4MTk3MmMzMTlmYiIsInRhZyI6IiJ9 | q1total
ko8ws00w48k8800cwk08oggo | saveinmed-dev | saveinmed | eyJpdiI6IkJWTm1lR2tIRzJNbTlYaWVQZTUrVlE9PSIsInZhbHVlIjoidjF6OHNxMUJRZFdQRlZjVWZYUkRvYzhLZ3RKZm0wNU1IRUNmclVhdG9mND0iLCJtYWMiOiIwMGQ0MThjODUwNjRjMDYwMjRlYThmNzEyNWViYjhjNWQ1MWJiNGYxZmNlYTJkZDZmZmQxYzhmZTMwZDY2MzI4IiwidGFnIjoiIn0= | saveinmed
nwwsc0skgkoko8wcwo4kcg48 | sextando-dev | sextando | eyJpdiI6Im5OVDB0SVNheU5IOVNkVkpnU3FYVGc9PSIsInZhbHVlIjoiOWduekVoK0RId1NGRTZGeWI3cjAzNElKN2czeVh4WVJTRktpaSt3d0JFTT0iLCJtYWMiOiI3M2ZlYTFjYzE5YzNjZDA1NDAzZjkxMWUzODlhY2FhZWI0ZjM5NGE0MjJlNmRhM2RiNTZiOTdkZmYxODRhMmU2IiwidGFnIjoiIn0= | sextando_dev
vskkccs8880cg0ggckccsgww | q1food-dev | q1food | eyJpdiI6Im5JR210eFhTaEF5KzBvR29EOE9URWc9PSIsInZhbHVlIjoiSi84UXpoL0N5czRlUDViV1pmOFQzdz09IiwibWFjIjoiNDFhYWQwYjcxMDBjYWUxZTQzMjIzMTY4NjFiZjNiOThlNzllNzA2MTk4YTIyOGE3YjBiYTJmZmI4OTNjYzcwZSIsInRhZyI6IiJ9 | q1food
sg0co4s44cs48o4kc4cgg844 | vaultwarden | vaultwarden | eyJpdiI6IkdCUlJ3b081aGV5dTFrMGMyeHMwVFE9PSIsInZhbHVlIjoib0lTVVNSUmNhUFRsWmJUekVQRFpmUT09IiwibWFjIjoiNzM2NjM0OTJiOTdhMTdkY2Q3ZDM4YzZhYmEzZGI0NTM2M2JiZTNkYjY0ZGRlZmMwYzBhYTQ3NzAxNmI3ZmU4YSIsInRhZyI6IiJ9 | vaultwarden
e8ogwk008c8s8sok8wc00ow0 | rodiziosdaqui-dev | rodizios | eyJpdiI6ImZnMjY5TExXbTdZSlNBU0ZsWmcrN2c9PSIsInZhbHVlIjoieTFRSVBWSjhFQW5YWExZeG1nbXdxZz09IiwibWFjIjoiYTQ3MzcxMTdjZWFlY2VmYjNkMDY5MzFlOGZmNDg1ZTFjYmNiMjUzYTAwOTI1MTBhN2Q5N2JkZDM0Mzg3YjE1YSIsInRhZyI6IiJ9 | rodiziosdaqui
bgws48os8wgwk08o48wg8k80 | gohorsejobs-dev | gohorsejobs | eyJpdiI6Ik4rZlcrcS9KRythZ25MeStuTFZWd0E9PSIsInZhbHVlIjoiaDlBY3JXaE4xd3BSUnV4WURxTTNPUT09IiwibWFjIjoiMTFkNGY2NzUxMmZiNTk1NzJmM2RkMTdhMDNkMWI3MzkwZWI2MTUzNGZmYzg0NzhhYmJhMDJmMmRjOTllZjNkNSIsInRhZyI6IiJ9 | gohorsejobs
(7 rows)

View file

@ -0,0 +1 @@
SELECT tablename FROM pg_catalog.pg_tables WHERE schemaname != 'pg_catalog' AND schemaname != 'information_schema';

View file

@ -0,0 +1,68 @@
tablename
--------------------------------------
migrations
password_reset_tokens
personal_access_tokens
activity_log
telescope_entries
telescope_entries_tags
telescope_monitoring
users
sessions
team_user
team_invitations
projects
private_keys
environments
project_settings
servers
application_previews
gitlab_apps
swarm_dockers
subscriptions
failed_jobs
local_persistent_volumes
application_deployment_queues
environment_variables
server_settings
scheduled_database_backup_executions
services
standalone_postgresqls
scheduled_database_backups
s3_storages
instance_settings
local_file_volumes
application_settings
shared_environment_variables
scheduled_tasks
service_applications
standalone_mysqls
scheduled_task_executions
tags
taggables
standalone_mariadbs
additional_destinations
standalone_dockers
github_apps
service_databases
teams
oauth_settings
applications
standalone_keydbs
email_notification_settings
standalone_mongodbs
docker_cleanup_executions
ssl_certificates
user_changelog_reads
cloud_init_scripts
webhook_notification_settings
discord_notification_settings
slack_notification_settings
telegram_notification_settings
pushover_notification_settings
cloud_provider_tokens
standalone_redis
standalone_dragonflies
standalone_clickhouses
(64 rows)

BIN
dev-scripts/pg_verify.txt Normal file

Binary file not shown.

View file

@ -0,0 +1,153 @@
List of relations
Schema | Name | Type | Owner
--------+---------------------------------------+-------+---------
public | announcements | table | coolify
public | ar_internal_metadata | table | coolify
public | attachable_journals | table | coolify
public | attachment_journals | table | coolify
public | attachments | table | coolify
public | attribute_help_texts | table | coolify
public | auth_providers | table | coolify
public | bcf_comments | table | coolify
public | bcf_issues | table | coolify
public | bcf_viewpoints | table | coolify
public | budget_journals | table | coolify
public | budgets | table | coolify
public | categories | table | coolify
public | changes | table | coolify
public | changeset_journals | table | coolify
public | changesets | table | coolify
public | changesets_work_packages | table | coolify
public | colors | table | coolify
public | comments | table | coolify
public | cost_entries | table | coolify
public | cost_queries | table | coolify
public | cost_types | table | coolify
public | custom_actions | table | coolify
public | custom_actions_projects | table | coolify
public | custom_actions_roles | table | coolify
public | custom_actions_statuses | table | coolify
public | custom_actions_types | table | coolify
public | custom_field_sections | table | coolify
public | custom_fields | table | coolify
public | custom_fields_projects | table | coolify
public | custom_fields_types | table | coolify
public | custom_options | table | coolify
public | custom_styles | table | coolify
public | custom_values | table | coolify
public | customizable_journals | table | coolify
public | deploy_status_checks | table | coolify
public | deploy_targets | table | coolify
public | design_colors | table | coolify
public | document_journals | table | coolify
public | documents | table | coolify
public | done_statuses_for_project | table | coolify
public | enabled_modules | table | coolify
public | enterprise_tokens | table | coolify
public | enumerations | table | coolify
public | exports | table | coolify
public | favorites | table | coolify
public | file_links | table | coolify
public | forums | table | coolify
public | github_check_runs | table | coolify
public | github_pull_requests | table | coolify
public | github_pull_requests_work_packages | table | coolify
public | github_users | table | coolify
public | gitlab_issues | table | coolify
public | gitlab_issues_work_packages | table | coolify
public | gitlab_merge_requests | table | coolify
public | gitlab_merge_requests_work_packages | table | coolify
public | gitlab_pipelines | table | coolify
public | gitlab_users | table | coolify
public | good_job_batches | table | coolify
public | good_job_executions | table | coolify
public | good_job_processes | table | coolify
public | good_job_settings | table | coolify
public | good_jobs | table | coolify
public | grid_widgets | table | coolify
public | grids | table | coolify
public | group_users | table | coolify
public | ical_token_query_assignments | table | coolify
public | ifc_models | table | coolify
public | job_statuses | table | coolify
public | journals | table | coolify
public | labor_budget_items | table | coolify
public | last_project_folders | table | coolify
public | ldap_auth_sources | table | coolify
public | ldap_groups_memberships | table | coolify
public | ldap_groups_synchronized_filters | table | coolify
public | ldap_groups_synchronized_groups | table | coolify
public | material_budget_items | table | coolify
public | meeting_agenda_item_journals | table | coolify
public | meeting_agenda_items | table | coolify
public | meeting_content_journals | table | coolify
public | meeting_contents | table | coolify
public | meeting_journals | table | coolify
public | meeting_participants | table | coolify
public | meeting_sections | table | coolify
public | meetings | table | coolify
public | member_roles | table | coolify
public | members | table | coolify
public | menu_items | table | coolify
public | message_journals | table | coolify
public | messages | table | coolify
public | news | table | coolify
public | news_journals | table | coolify
public | non_working_days | table | coolify
public | notification_settings | table | coolify
public | notifications | table | coolify
public | oauth_access_grants | table | coolify
public | oauth_access_tokens | table | coolify
public | oauth_applications | table | coolify
public | oauth_client_tokens | table | coolify
public | oauth_clients | table | coolify
public | oidc_user_session_links | table | coolify
public | ordered_work_packages | table | coolify
public | paper_trail_audits | table | coolify
public | project_custom_field_project_mappings | table | coolify
public | project_journals | table | coolify
public | project_queries | table | coolify
public | project_storages | table | coolify
public | projects | table | coolify
public | projects_types | table | coolify
public | queries | table | coolify
public | rates | table | coolify
public | recaptcha_entries | table | coolify
public | relations | table | coolify
public | remote_identities | table | coolify
public | repositories | table | coolify
public | role_permissions | table | coolify
public | roles | table | coolify
public | schema_migrations | table | coolify
public | sessions | table | coolify
public | settings | table | coolify
public | statuses | table | coolify
public | storages | table | coolify
public | storages_file_links_journals | table | coolify
public | time_entries | table | coolify
public | time_entry_activities_projects | table | coolify
public | time_entry_journals | table | coolify
public | tokens | table | coolify
public | two_factor_authentication_devices | table | coolify
public | types | table | coolify
public | user_passwords | table | coolify
public | user_preferences | table | coolify
public | users | table | coolify
public | version_settings | table | coolify
public | versions | table | coolify
public | views | table | coolify
public | watchers | table | coolify
public | webhooks_events | table | coolify
public | webhooks_logs | table | coolify
public | webhooks_projects | table | coolify
public | webhooks_webhooks | table | coolify
public | wiki_page_journals | table | coolify
public | wiki_pages | table | coolify
public | wiki_redirects | table | coolify
public | wikis | table | coolify
public | work_package_hierarchies | table | coolify
public | work_package_journals | table | coolify
public | work_packages | table | coolify
public | workflows | table | coolify
(148 rows)

View file

@ -0,0 +1,20 @@
{
"id": 1,
"uuid": "t0c4ss0wkcgwg48g088wkwgs",
"description": "Servicos de infraestrutura e seguranca",
"name": "shared",
"environments": [
{
"id": 1,
"name": "production",
"project_id": 1,
"created_at": "2026-02-16T12:48:00.000000Z",
"updated_at": "2026-02-16T12:48:00.000000Z",
"description": null,
"uuid": "sw4ckcgkgs0wssgs40os8s0g"
}
],
"team_id": 0,
"created_at": "2026-02-16T12:48:00.000000Z",
"updated_at": "2026-02-23T14:29:25.000000Z"
}

View file

@ -0,0 +1,62 @@
[
{
"id": 1,
"uuid": "t0c4ss0wkcgwg48g088wkwgs",
"description": "Servicos de infraestrutura e seguranca",
"name": "shared"
},
{
"id": 2,
"uuid": "gkgksco0ow4kgwo8ow4cgs8c",
"name": "gohorsejobs",
"description": null
},
{
"id": 3,
"uuid": "iooos0488ww0coccosc0sk4c",
"name": "rodiziosdaqui",
"description": null
},
{
"id": 4,
"uuid": "scwgsc8k0w84gkc88c080ck4",
"name": "obramarket",
"description": ""
},
{
"id": 5,
"uuid": "x0os8c40o00ssoo84sokwosk",
"description": "Q1Food - Sistema de Delivery",
"name": "q1food"
},
{
"id": 6,
"uuid": "ews8s8o40wkok0cgc8w4wc04",
"description": "Q1 Agenda - Sistema de Agenda",
"name": "q1agenda"
},
{
"id": 7,
"uuid": "xk40w0s88wkcoco0css8c8kk",
"description": "Sextando App",
"name": "sextando"
},
{
"id": 8,
"uuid": "e0gg00w4sksk88cwksgc4cwo",
"description": "Q1 Total Backend",
"name": "q1total"
},
{
"id": 9,
"uuid": "dc40gww0gg4kw88k4gk88sws",
"description": "OpenProject - Project Management",
"name": "openproject"
},
{
"id": 10,
"uuid": "lgko4gcg0okk48k04kcww0gs",
"description": "Saveinmed Project",
"name": "saveinmed"
}
]

BIN
dev-scripts/ps.txt Normal file

Binary file not shown.

BIN
dev-scripts/ps2.txt Normal file

Binary file not shown.

BIN
dev-scripts/ps3.txt Normal file

Binary file not shown.

BIN
dev-scripts/ps_all_last.txt Normal file

Binary file not shown.

View file

@ -0,0 +1 @@
8b8739cdb1ae openproject/openproject:14 "./docker/prod/entry???" 21 minutes ago Up 21 minutes 80/tcp openproject-cs80o4sgo440gkwkogo4c44k

BIN
dev-scripts/ps_last.txt Normal file

Binary file not shown.

View file

@ -0,0 +1 @@
8b8739cdb1ae openproject/openproject:14 "./docker/prod/entry???" 19 minutes ago Up 19 minutes 80/tcp openproject-cs80o4sgo440gkwkogo4c44k

1
dev-scripts/query.sql Normal file
View file

@ -0,0 +1 @@
SELECT logs FROM application_deployments WHERE application_id = (SELECT id FROM applications WHERE uuid='eosgwscc4g044c884k0ws4gc') ORDER BY created_at DESC LIMIT 1;

View file

@ -0,0 +1 @@
SELECT logs FROM application_deployment_queues WHERE CAST(application_id AS INTEGER) = (SELECT id FROM applications WHERE uuid='eosgwscc4g044c884k0ws4gc') ORDER BY created_at DESC LIMIT 1;

View file

@ -0,0 +1,13 @@
docker stop gohorsejobs-frontend-dev || true
docker rm gohorsejobs-frontend-dev || true
docker run -d --name gohorsejobs-frontend-dev --restart always --network coolify
-e API_URL='https://api-local.gohorsejobs.com'
-e NEXT_PUBLIC_API_URL='https://api-local.gohorsejobs.com'
-e NEXT_PUBLIC_BACKOFFICE_URL='https://b-local.gohorsejobs.com'
--label 'traefik.enable=true'
--label 'traefik.http.routers.https-ghj-frontend-dev.rule=Host(`dev.gohorsejobs.com`) && PathPrefix(`/`)'
--label 'traefik.http.routers.https-ghj-frontend-dev.entrypoints=https'
--label 'traefik.http.routers.https-ghj-frontend-dev.tls=true'
--label 'traefik.http.routers.https-ghj-frontend-dev.tls.certresolver=letsencrypt'
--label 'traefik.http.services.https-ghj-frontend-dev.loadbalancer.server.port=3000'
sha256:3f3f2ceb6395a01e13930d4e5aaa88d8173f7305cc0d412183145082993b6411

View file

@ -0,0 +1,3 @@
docker stop gohorsejobs-frontend-dev || true
docker rm gohorsejobs-frontend-dev || true
docker run -d --name gohorsejobs-frontend-dev --restart always --network coolify -e API_URL='https://api-local.gohorsejobs.com' -e NEXT_PUBLIC_API_URL='https://api-local.gohorsejobs.com' -e NEXT_PUBLIC_BACKOFFICE_URL='https://b-local.gohorsejobs.com' --label 'traefik.enable=true' --label 'traefik.http.routers.https-ghj-frontend-dev.rule=Host(`dev.gohorsejobs.com`) && PathPrefix(`/`)' --label 'traefik.http.routers.https-ghj-frontend-dev.entrypoints=https' --label 'traefik.http.routers.https-ghj-frontend-dev.tls=true' --label 'traefik.http.routers.https-ghj-frontend-dev.tls.certresolver=letsencrypt' --label 'traefik.http.services.https-ghj-frontend-dev.loadbalancer.server.port=3000' sha256:3f3f2ceb6395a01e13930d4e5aaa88d8173f7305cc0d412183145082993b6411

View file

@ -0,0 +1,23 @@
docker stop forgejo-redbull || true
docker rm forgejo-redbull || true
docker run -d
--name forgejo-redbull
--restart always
--network coolify
-p 3001:3000
-p 22222:22
-v forgejo-data:/data
-e USER=git
-e GITEA_CUSTOM=/data/gitea
-e FORGEJO__database__DB_TYPE=postgres
-e FORGEJO__database__HOST=kssgo8ccgkos0kw0c0owgk8o:5432
-e FORGEJO__database__NAME=forgejo
-e FORGEJO__database__USER=coolify
-e "FORGEJO__database__PASSWD=Shared#User#Password#123!4"
-e FORGEJO__database__SSL_MODE=disable
--label "traefik.enable=true"
--label "traefik.http.routers.forgejo-redbull.rule=Host(`git.rede5.com.br`)"
--label "traefik.http.routers.forgejo-redbull.entrypoints=https"
--label "traefik.http.routers.forgejo-redbull.tls=true"
--label "traefik.http.services.forgejo-redbull.loadbalancer.server.port=3000"
codeberg.org/forgejo/forgejo:8

View file

@ -0,0 +1,3 @@
docker stop forgejo-redbull || true
docker rm forgejo-redbull || true
docker run -d --name forgejo-redbull --restart always --network coolify -p 3001:3000 -p 22222:22 -v forgejo-data:/data -e USER=git -e GITEA_CUSTOM=/data/gitea -e FORGEJO__database__DB_TYPE=postgres -e FORGEJO__database__HOST=kssgo8ccgkos0kw0c0owgk8o:5432 -e FORGEJO__database__NAME=forgejo -e FORGEJO__database__USER=coolify -e "FORGEJO__database__PASSWD=Shared#User#Password#123!4" -e FORGEJO__database__SSL_MODE=disable --label "traefik.enable=true" --label "traefik.http.routers.forgejo-redbull.rule=Host(`git.rede5.com.br`)" --label "traefik.http.routers.forgejo-redbull.entrypoints=https" --label "traefik.http.routers.forgejo-redbull.tls=true" --label "traefik.http.services.forgejo-redbull.loadbalancer.server.port=3000" codeberg.org/forgejo/forgejo:8

Some files were not shown because too many files have changed in this diff Show more