Overview
Express.js Worker Service is the minimal and widely used Node.js web framework for APIs and server-rendered apps. This profile runs Express.js as a background worker process rather than a web-facing service, which suits processing queues, scheduled tasks, and other asynchronous jobs. DockerCP deploys it as a Docker container with persistent storage, default port mapping, domain routing, and SSL-ready configuration. Once it is running, you can attach domains, issue SSL certificates, inspect logs, and monitor resource usage directly from the panel.
How deployment works in DockerCP
This template gives DockerCP the deployment metadata needed to create a service, prepare runtime variables, map persistent storage, expose the internal port, and connect a public domain with SSL when required.
- Create or select a project where the service belongs.
- Review the Docker image, tag, default port, environment variables, and volume mappings.
- Deploy the service and check logs until the application is healthy.
- Attach a domain or subdomain when the application must be available publicly.
- Enable HTTPS and verify the final browser response.
Configuration
Environment variables
| Variable | Default / guidance |
|---|---|
APP_ENV |
production |
APP_PORT |
3000 |
Persistent volumes
| Volume | Mount path |
|---|---|
| express_js_worker_service_data | /data |
Commands
DockerCP handles deployment from the panel, but understanding the equivalent Docker commands helps users debug services with more confidence.
docker pull node:20-alpine
docker ps --filter "name=express-js-worker-service"
docker logs --tail=100 express-js-worker-service
DNS and SSL checklist
| Step | Expected result |
|---|---|
| Add A or CNAME record | The domain points to the DockerCP server or configured target. |
| Attach domain to service | The service is reachable through the selected hostname. |
| Enable HTTPS | The certificate becomes active and redirect to HTTPS can be enabled. |
Screenshots
Panel previews for the Express.js Worker Service template: how deployment, the running service, and its key details look inside DockerCP.
| Method | Route | Status |
|---|---|---|
| GET | / | 200 OK |
| GET | /api/health | 200 OK |
| POST | /api/items | 201 Created |
Troubleshoot
- Confirm the Docker image and tag exist.
- Confirm the selected internal port matches the application port.
- Confirm required variables such as database URL, app URL, and credentials are set.
- Check service logs after the first deployment.
- Verify DNS before requesting or renewing SSL certificates.