Gabe Vigodi
Gabe Vigodi
DDokploy
Created by Gabe Vigodi on 4/29/2025 in #help
Docker Error Parsing Config File
Found the problem. I had added COMPOSE_BAKE=true to one of the Compose deployments. A full reinstallation was required (I think) to rectify the issue.
8 replies
DDokploy
Created by Gabe Vigodi on 4/29/2025 in #help
Docker Error Parsing Config File
I've tried that and restarted but no luck. All deployments are affected. I can't even see the server logs from the UI
8 replies
DDokploy
Created by Gabe Vigodi on 4/29/2025 in #help
Docker Error Parsing Config File
No description
8 replies
DDokploy
Created by Gabe Vigodi on 4/29/2025 in #help
Docker Error Parsing Config File
The error shows up for both
8 replies
DDokploy
Created by Gabe Vigodi on 11/10/2024 in #help
Help with setting up multi-site ERPNext
DB_ROOT_PASSWORD
24 replies
DDokploy
Created by Gabe Vigodi on 11/10/2024 in #help
Help with setting up multi-site ERPNext
web:
image: caddy:2-alpine
expose:
- 80
volumes:
- ../files/Caddyfile:/etc/caddy/Caddyfile
- ../files/frappe-bench:/home/frappe/frappe-bench
depends_on:
- backend
- websocket
networks:
- dokploy-network
web:
image: caddy:2-alpine
expose:
- 80
volumes:
- ../files/Caddyfile:/etc/caddy/Caddyfile
- ../files/frappe-bench:/home/frappe/frappe-bench
depends_on:
- backend
- websocket
networks:
- dokploy-network
24 replies
DDokploy
Created by Gabe Vigodi on 11/10/2024 in #help
Help with setting up multi-site ERPNext
Actually you should provide port 80 since that's the container port
24 replies
DDokploy
Created by Gabe Vigodi on 11/10/2024 in #help
Help with setting up multi-site ERPNext
No description
24 replies
DDokploy
Created by David on 11/20/2024 in #help
Where is located the env file related to CLI environment settings?
The path is /etc/dokploy. You'll need the root user to make file updates
6 replies
DDokploy
Created by David on 11/20/2024 in #help
Where is located the env file related to CLI environment settings?
No description
6 replies
DDokploy
Created by riccc on 11/18/2024 in #help
WSL error during installation
Both work but I find it easier to use Docker Compose especially when deploying multiple containers
48 replies
DDokploy
Created by riccc on 11/18/2024 in #help
WSL error during installation
When using Docker compose, the volumes are defined as:
volumes:
- ../files/{folder on host}:/{folder on container}
volumes:
- ../files/{folder on host}:/{folder on container}
Dokploy Docs https://docs.dokploy.com/docs/core/applications/advanced#volumesmounts https://docs.dokploy.com/docs/core/docker-compose Docker Docs https://docs.docker.com/engine/storage/volumes/
48 replies
DDokploy
Created by riccc on 11/18/2024 in #help
WSL error during installation
Awesome, it's only up from here 😃
48 replies
DDokploy
Created by riccc on 11/18/2024 in #help
WSL error during installation
Are you able to login on localhost:3000?
48 replies
DDokploy
Created by riccc on 11/18/2024 in #help
WSL error during installation
No description
48 replies
DDokploy
Created by Kirill on 6/9/2024 in #help
Docker-compose with network: host
Thanks, worked like a charm
8 replies
DDokploy
Created by Kirill on 6/9/2024 in #help
Docker-compose with network: host
@Siumauricio The server domain or the service domain?
8 replies
DDokploy
Created by Kirill on 6/9/2024 in #help
Docker-compose with network: host
No description
8 replies
DDokploy
Created by Daniel Tan on 8/16/2024 in #help
access dokploy service on localhost with WSL2
@Daniel Tan Have you tried exposing the port like this?
ports:
- 8055:8055
ports:
- 8055:8055
6 replies
DDokploy
Created by Gabe Vigodi on 11/10/2024 in #help
Help with setting up multi-site ERPNext
Yeah, I managed to get the setup working but I wasn't enjoying the app installation/update process so I opted for a different setup. Here's the Caddyfile that needs to be added as a file mount:
:80 {
root * /home/frappe/frappe-bench/sites
file_server /assets/* {
root /home/frappe/frappe-bench/sites
}
reverse_proxy /socket.io/* websocket:9000
@notStatic {
not path /assets/*
not path /socket.io/*
}
reverse_proxy @notStatic 0.0.0.0:8000
encode gzip
header {
X-Frame-Options "SAMEORIGIN"
Strict-Transport-Security "max-age=63072000; includeSubDomains; preload"
X-Content-Type-Options "nosniff"
X-XSS-Protection "1; mode=block"
Referrer-Policy "same-origin, strict-origin-when-cross-origin"
}
}
:80 {
root * /home/frappe/frappe-bench/sites
file_server /assets/* {
root /home/frappe/frappe-bench/sites
}
reverse_proxy /socket.io/* websocket:9000
@notStatic {
not path /assets/*
not path /socket.io/*
}
reverse_proxy @notStatic 0.0.0.0:8000
encode gzip
header {
X-Frame-Options "SAMEORIGIN"
Strict-Transport-Security "max-age=63072000; includeSubDomains; preload"
X-Content-Type-Options "nosniff"
X-XSS-Protection "1; mode=block"
Referrer-Policy "same-origin, strict-origin-when-cross-origin"
}
}
24 replies