afunworm
afunworm
DDokploy
Created by afunworm on 2/18/2025 in #help
Custom Domain for Dokploy Control Panel
Hi, guys. Instead of using IP:3000, is it possible to map that to a domain (example.com) somehow using the built-in Traefik?
39 replies
DDokploy
Created by afunworm on 2/18/2025 in #help
How to use Dokploy's Traefik for Reverse Proxy Only?
I have an app that is already running at 127.0.0.1:8888. How do I deploy an application that does nothing except forwarding all requests from example.com to 127.0.0.1:8888? What I did so far: 1. Create an application. 2. Create a domain for that application. 3. Go inside Traefik File System > Dynamic > example-e4e1ia.yml and make the following changes:
services:
example-e4e1ia-service-17:
loadBalancer:
servers:
- url: http://127.0.0.1:3000
passHostHeader: true
services:
example-e4e1ia-service-17:
loadBalancer:
servers:
- url: http://127.0.0.1:3000
passHostHeader: true
4. I go inside the Application again and click "Deploy". This is what is shown in the deployment tab:
Initializing deployment
Initializing deployment
And this is what is shown in the log tab:
Error response from daemon: No such container: select-a-container
Error response from daemon: No such container: select-a-container
10 replies
DDokploy
Created by afunworm on 2/14/2025 in #help
How to stop Dokploy Docker Compose (raw) from adding random string to my volume name?
I have a docker compose with this volume:
volumes:
test_data:
external: true
volumes:
test_data:
external: true
However, when I build and deploy and inspect the container, the volume name becomes: test_data-project-name-gibberish. Even in the Preview Docker Compose, the name of the volume is changed. What should I do to make Dokploy respect the volume in my raw Docker Compose?
3 replies