You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I'm trying to test how Dokploy Templates work, but i can't get them to run.
Every single one of the always return a DB access related error. What am I doing wrong?
Examples:
Blinko:
Database Logs:
2025-12-03T15:18:54.932Z The files belonging to this database system will be owned by user "postgres".
2025-12-03T15:18:54.932Z This user must also own the server process.
2025-12-03T15:18:54.932Z The database cluster will be initialized with locale "en_US.utf8".
2025-12-03T15:18:54.932Z The default database encoding has accordingly been set to "UTF8".
2025-12-03T15:18:54.932Z The default text search configuration will be set to "english".
2025-12-03T15:18:54.932Z Data page checksums are disabled.
2025-12-03T15:18:54.933Z fixing permissions on existing directory /var/lib/postgresql/data ... ok
2025-12-03T15:18:54.934Z creating subdirectories ... ok
2025-12-03T15:18:54.934Z selecting dynamic shared memory implementation ... posix
2025-12-03T15:18:54.953Z selecting default max_connections ... 100
2025-12-03T15:18:54.986Z selecting default shared_buffers ... 128MB
2025-12-03T15:18:54.986Z selecting default time zone ... Asia/Shanghai
2025-12-03T15:18:54.988Z creating configuration files ... ok
2025-12-03T15:18:55.143Z running bootstrap script ... ok
2025-12-03T15:18:55.595Z performing post-bootstrap initialization ... ok
2025-12-03T15:18:55.700Z syncing data to disk ... ok
2025-12-03T15:18:55.700Z Success. You can now start the database server using:
2025-12-03T15:18:55.700Z pg_ctl -D /var/lib/postgresql/data -l logfile start
2025-12-03T15:18:55.700Z initdb: warning: enabling "trust" authentication for local connections
2025-12-03T15:18:55.700Z You can change this by editing pg_hba.conf or using the option -A, or
2025-12-03T15:18:55.700Z --auth-local and --auth-host, the next time you run initdb.
2025-12-03T15:18:55.758Z waiting for server to start....2025-12-03 23:18:55.758 CST [48] LOG: starting PostgreSQL 14.20 (Debian 14.20-1.pgdg13+1) on x86_64-pc-linux-gnu, compiled by gcc (Debian 14.2.0-19) 14.2.0, 64-bit
2025-12-03T15:18:55.760Z 2025-12-03 23:18:55.759 CST [48] LOG: listening on Unix socket "/var/run/postgresql/.s.PGSQL.5432"
2025-12-03T15:18:55.766Z 2025-12-03 23:18:55.766 CST [49] LOG: database system was shut down at 2025-12-03 23:18:55 CST
2025-12-03T15:18:55.773Z 2025-12-03 23:18:55.772 CST [48] LOG: database system is ready to accept connections
2025-12-03T15:18:55.831Z done
2025-12-03T15:18:55.831Z server started
2025-12-03T15:18:55.876Z /usr/local/bin/docker-entrypoint.sh: ignoring /docker-entrypoint-initdb.d/*
2025-12-03T15:18:55.878Z waiting for server to shut down...2025-12-03 23:18:55.878 CST [48] LOG: received fast shutdown request
2025-12-03T15:18:55.881Z .2025-12-03 23:18:55.879 CST [48] LOG: aborting any active transactions
2025-12-03T15:18:55.881Z 2025-12-03 23:18:55.881 CST [48] LOG: background worker "logical replication launcher" (PID 55) exited with exit code 1
2025-12-03T15:18:55.883Z 2025-12-03 23:18:55.883 CST [50] LOG: shutting down
2025-12-03T15:18:55.898Z 2025-12-03 23:18:55.898 CST [48] LOG: database system is shut down
2025-12-03T15:18:55.978Z done
2025-12-03T15:18:55.978Z server stopped
2025-12-03T15:18:55.981Z PostgreSQL init process complete; ready for start up.
2025-12-03T15:18:56.010Z 2025-12-03 23:18:56.010 CST [1] LOG: starting PostgreSQL 14.20 (Debian 14.20-1.pgdg13+1) on x86_64-pc-linux-gnu, compiled by gcc (Debian 14.2.0-19) 14.2.0, 64-bit
2025-12-03T15:18:56.010Z 2025-12-03 23:18:56.010 CST [1] LOG: listening on IPv4 address "0.0.0.0", port 5432
2025-12-03T15:18:56.010Z 2025-12-03 23:18:56.010 CST [1] LOG: listening on IPv6 address "::", port 5432
2025-12-03T15:18:56.013Z 2025-12-03 23:18:56.013 CST [1] LOG: listening on Unix socket "/var/run/postgresql/.s.PGSQL.5432"
2025-12-03T15:18:56.017Z 2025-12-03 23:18:56.017 CST [61] LOG: database system was shut down at 2025-12-03 23:18:55 CST
2025-12-03T15:18:56.023Z 2025-12-03 23:18:56.023 CST [1] LOG: database system is ready to accept connections
App Logs:
2025-12-03T15:19:19.674Z Can't reach database server at `blinko-postgres:5432`
2025-12-03T15:19:19.674Z Please make sure your database server is running at `blinko-postgres:5432`.
2025-12-03T15:19:19.674Z prisma:error
2025-12-03T15:19:19.674Z Invalid `prisma.scheduledTask.findFirst()` invocation:
2025-12-03T15:19:19.674Z Can't reach database server at `blinko-postgres:5432`
2025-12-03T15:19:19.674Z Please make sure your database server is running at `blinko-postgres:5432`.
2025-12-03T15:19:19.674Z prisma:error
2025-12-03T15:19:19.674Z Invalid `prisma.scheduledTask.findFirst()` invocation:
2025-12-03T15:19:19.674Z Can't reach database server at `blinko-postgres:5432`
2025-12-03T15:19:19.674Z Please make sure your database server is running at `blinko-postgres:5432`.
2025-12-03T15:19:19.675Z Failed to initialize RecommandJob: PrismaClientInitializationError:
2025-12-03T15:19:19.675Z Invalid `prisma.follows.count()` invocation:
2025-12-03T15:19:19.675Z Can't reach database server at `blinko-postgres:5432`
2025-12-03T15:19:19.675Z Please make sure your database server is running at `blinko-postgres:5432`.
2025-12-03T15:19:19.675Z at $n.handleRequestError (/app/server/index.js:181:7611)
2025-12-03T15:19:19.675Z at $n.handleAndLogRequestError (/app/server/index.js:181:6619)
2025-12-03T15:19:19.675Z at $n.request (/app/server/index.js:181:6303)
2025-12-03T15:19:19.675Z at async c (/app/server/index.js:190:9516)
2025-12-03T15:19:19.675Z at async SXe.initializeTask (/app/server/index.js:1746:17117) {
2025-12-03T15:19:19.675Z clientVersion: '5.22.0',
2025-12-03T15:19:19.675Z errorCode: undefined
2025-12-03T15:19:19.675Z }
2025-12-03T15:19:19.675Z Failed to initialize Backup Database: PrismaClientInitializationError:
2025-12-03T15:19:19.675Z Invalid `prisma.scheduledTask.findFirst()` invocation:
2025-12-03T15:19:19.675Z Can't reach database server at `blinko-postgres:5432`
2025-12-03T15:19:19.675Z Please make sure your database server is running at `blinko-postgres:5432`.
2025-12-03T15:19:19.675Z at $n.handleRequestError (/app/server/index.js:181:7611)
2025-12-03T15:19:19.675Z at $n.handleAndLogRequestError (/app/server/index.js:181:6619)
2025-12-03T15:19:19.675Z at $n.request (/app/server/index.js:181:6303)
2025-12-03T15:19:19.675Z at async c (/app/server/index.js:190:9516)
2025-12-03T15:19:19.675Z at async Timeout._onTimeout (/app/server/index.js:1704:9985) {
2025-12-03T15:19:19.675Z clientVersion: '5.22.0',
2025-12-03T15:19:19.675Z errorCode: undefined
2025-12-03T15:19:19.675Z }
2025-12-03T15:19:19.675Z Failed to initialize Auto Archive Blinko: PrismaClientInitializationError:
2025-12-03T15:19:19.675Z Invalid `prisma.scheduledTask.findFirst()` invocation:
2025-12-03T15:19:19.675Z Can't reach database server at `blinko-postgres:5432`
2025-12-03T15:19:19.675Z Please make sure your database server is running at `blinko-postgres:5432`.
2025-12-03T15:19:19.675Z at $n.handleRequestError (/app/server/index.js:181:7611)
2025-12-03T15:19:19.675Z at $n.handleAndLogRequestError (/app/server/index.js:181:6619)
2025-12-03T15:19:19.675Z at $n.request (/app/server/index.js:181:6303)
2025-12-03T15:19:19.675Z at async c (/app/server/index.js:190:9516)
2025-12-03T15:19:19.675Z at async Timeout._onTimeout (/app/server/index.js:1704:9985) {
2025-12-03T15:19:19.675Z clientVersion: '5.22.0',
2025-12-03T15:19:19.675Z errorCode: undefined
2025-12-03T15:19:19.675Z }
2025-12-03T15:19:19.675Z start server error: PrismaClientInitializationError:
2025-12-03T15:19:19.675Z Invalid `prisma.config.findFirst()` invocation:
2025-12-03T15:19:19.675Z Can't reach database server at `blinko-postgres:5432`
2025-12-03T15:19:19.675Z Please make sure your database server is running at `blinko-postgres:5432`.
2025-12-03T15:19:19.675Z at $n.handleRequestError (/app/server/index.js:181:7611)
2025-12-03T15:19:19.675Z at $n.handleAndLogRequestError (/app/server/index.js:181:6619)
2025-12-03T15:19:19.675Z at $n.request (/app/server/index.js:181:6303)
2025-12-03T15:19:19.675Z at async c (/app/server/index.js:190:9516)
2025-12-03T15:19:19.675Z at async Iue (/app/server/index.js:539:748)
2025-12-03T15:19:19.675Z at async KEl (/app/server/index.js:539:59407)
2025-12-03T15:19:19.675Z at async S6n (/app/server/index.js:539:59325)
2025-12-03T15:19:19.675Z at async aHc (/app/server/index.js:3860:4804) {
2025-12-03T15:19:19.675Z clientVersion: '5.22.0',
2025-12-03T15:19:19.675Z errorCode: undefined
2025-12-03T15:19:19.675Z }
2025-12-03T15:19:19.678Z 3:19:19 PM [vite-express] Running in production mode
2025-12-03T15:19:19.678Z 3:19:19 PM [vite-express] Inline config detected, ignoring Vite config file
2025-12-03T15:19:19.679Z 3:19:19 PM [vite-express] Serving static files from /app/server/public
2025-12-03T15:19:19.689Z 🎉server start on port http://0.0.0.0:1111 - env: production
2025-12-03T15:19:19.689Z unhandledRejection: PrismaClientInitializationError:
2025-12-03T15:19:19.689Z Invalid `prisma.scheduledTask.findFirst()` invocation:
2025-12-03T15:19:19.689Z Can't reach database server at `blinko-postgres:5432`
2025-12-03T15:19:19.689Z Please make sure your database server is running at `blinko-postgres:5432`.
2025-12-03T15:19:19.689Z at $n.handleRequestError (/app/server/index.js:181:7611)
2025-12-03T15:19:19.689Z at $n.handleAndLogRequestError (/app/server/index.js:181:6619)
2025-12-03T15:19:19.689Z at $n.request (/app/server/index.js:181:6303)
2025-12-03T15:19:19.689Z at async c (/app/server/index.js:190:9516)
2025-12-03T15:19:19.689Z at async B9.autoStart (/app/server/index.js:1704:9811) {
2025-12-03T15:19:19.689Z clientVersion: '5.22.0',
2025-12-03T15:19:19.689Z errorCode: undefined
2025-12-03T15:19:19.689Z }
AffinePro
Database Log:
2025-12-03T14:53:35.418Z The files belonging to this database system will be owned by user "postgres".
2025-12-03T14:53:35.418Z This user must also own the server process.
2025-12-03T14:53:35.418Z The database cluster will be initialized with locale "en_US.utf8".
2025-12-03T14:53:35.418Z The default database encoding has accordingly been set to "UTF8".
2025-12-03T14:53:35.418Z The default text search configuration will be set to "english".
2025-12-03T14:53:35.418Z Data page checksums are disabled.
2025-12-03T14:53:35.419Z fixing permissions on existing directory /var/lib/postgresql/data ... ok
2025-12-03T14:53:35.420Z creating subdirectories ... ok
2025-12-03T14:53:35.420Z selecting dynamic shared memory implementation ... posix
2025-12-03T14:53:35.458Z selecting default max_connections ... 100
2025-12-03T14:53:35.500Z selecting default shared_buffers ... 128MB
2025-12-03T14:53:35.566Z selecting default time zone ... UTC
2025-12-03T14:53:35.569Z creating configuration files ... ok
2025-12-03T14:53:35.793Z running bootstrap script ... ok
2025-12-03T14:53:36.071Z sh: locale: not found
2025-12-03T14:53:36.071Z 2025-12-03 14:53:36.071 UTC [35] WARNING: no usable system locales were found
2025-12-03T14:53:37.151Z performing post-bootstrap initialization ... ok
2025-12-03T14:53:37.279Z syncing data to disk ... ok
2025-12-03T14:53:37.279Z initdb: warning: enabling "trust" authentication for local connections
2025-12-03T14:53:37.280Z initdb: hint: You can change this by editing pg_hba.conf or using the option -A, or --auth-local and --auth-host, the next time you run initdb.
2025-12-03T14:53:37.280Z Success. You can now start the database server using:
2025-12-03T14:53:37.280Z pg_ctl -D /var/lib/postgresql/data -l logfile start
2025-12-03T14:53:37.343Z waiting for server to start....2025-12-03 14:53:37.343 UTC [41] LOG: starting PostgreSQL 15.15 on x86_64-pc-linux-musl, compiled by gcc (Alpine 14.2.0) 14.2.0, 64-bit
2025-12-03T14:53:37.345Z 2025-12-03 14:53:37.345 UTC [41] LOG: listening on Unix socket "/var/run/postgresql/.s.PGSQL.5432"
2025-12-03T14:53:37.353Z 2025-12-03 14:53:37.353 UTC [44] LOG: database system was shut down at 2025-12-03 14:53:37 UTC
2025-12-03T14:53:37.365Z 2025-12-03 14:53:37.365 UTC [41] LOG: database system is ready to accept connections
2025-12-03T14:53:37.412Z done
2025-12-03T14:53:37.413Z server started
2025-12-03T14:53:38.013Z CREATE DATABASE
2025-12-03T14:53:38.016Z /usr/local/bin/docker-entrypoint.sh: ignoring /docker-entrypoint-initdb.d/*
2025-12-03T14:53:38.020Z 2025-12-03 14:53:38.019 UTC [41] LOG: received fast shutdown request
2025-12-03T14:53:38.022Z waiting for server to shut down....2025-12-03 14:53:38.021 UTC [41] LOG: aborting any active transactions
2025-12-03T14:53:38.033Z 2025-12-03 14:53:38.033 UTC [41] LOG: background worker "logical replication launcher" (PID 47) exited with exit code 1
2025-12-03T14:53:38.034Z 2025-12-03 14:53:38.034 UTC [42] LOG: shutting down
2025-12-03T14:53:38.036Z 2025-12-03 14:53:38.036 UTC [42] LOG: checkpoint starting: shutdown immediate
2025-12-03T14:53:38.197Z 2025-12-03 14:53:38.197 UTC [42] LOG: checkpoint complete: wrote 921 buffers (5.6%); 0 WAL file(s) added, 0 removed, 0 recycled; write=0.125 s, sync=0.029 s, total=0.163 s; sync files=301, longest=0.004 s, average=0.001 s; distance=4239 kB, estimate=4239 kB
2025-12-03T14:53:38.213Z 2025-12-03 14:53:38.210 UTC [41] LOG: database system is shut down
2025-12-03T14:53:38.221Z done
2025-12-03T14:53:38.221Z server stopped
2025-12-03T14:53:38.223Z PostgreSQL init process complete; ready for start up.
2025-12-03T14:53:38.278Z 2025-12-03 14:53:38.277 UTC [1] LOG: starting PostgreSQL 15.15 on x86_64-pc-linux-musl, compiled by gcc (Alpine 14.2.0) 14.2.0, 64-bit
2025-12-03T14:53:38.278Z 2025-12-03 14:53:38.278 UTC [1] LOG: listening on IPv4 address "0.0.0.0", port 5432
2025-12-03T14:53:38.278Z 2025-12-03 14:53:38.278 UTC [1] LOG: listening on IPv6 address "::", port 5432
2025-12-03T14:53:38.282Z 2025-12-03 14:53:38.280 UTC [1] LOG: listening on Unix socket "/var/run/postgresql/.s.PGSQL.5432"
2025-12-03T14:53:38.293Z 2025-12-03 14:53:38.290 UTC [57] LOG: database system was shut down at 2025-12-03 14:53:38 UTC
2025-12-03T14:53:38.310Z 2025-12-03 14:53:38.310 UTC [1] LOG: database system is ready to accept connections
2025-12-03T14:58:38.354Z 2025-12-03 14:58:38.354 UTC [55] LOG: checkpoint starting: time
2025-12-03T14:58:42.481Z 2025-12-03 14:58:42.481 UTC [55] LOG: checkpoint complete: wrote 44 buffers (0.3%); 0 WAL file(s) added, 0 removed, 0 recycled; write=4.116 s, sync=0.004 s, total=4.127 s; sync files=12, longest=0.002 s, average=0.001 s; distance=252 kB, estimate=252 kB
reacted with thumbs up emoji reacted with thumbs down emoji reacted with laugh emoji reacted with hooray emoji reacted with confused emoji reacted with heart emoji reacted with rocket emoji reacted with eyes emoji
Uh oh!
There was an error while loading. Please reload this page.
Uh oh!
There was an error while loading. Please reload this page.
-
I'm trying to test how Dokploy Templates work, but i can't get them to run.
Every single one of the always return a DB access related error. What am I doing wrong?
Examples:
Blinko:
Database Logs:
App Logs:
AffinePro
Database Log:
App:
Even though there are two apps' logs, I also tried building Huly and Habitica.
Beta Was this translation helpful? Give feedback.
All reactions