Skip to content
Open
Changes from 7 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 6 additions & 3 deletions apps/docs/content/docs/core/docker-compose/domains.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -27,20 +27,23 @@ At runtime, during the deployment phase, Dokploy automatically adds Traefik labe

**Example:**

For a more complete working example beyond the basic hub, refer to [this pull request](https://github.com/Dokploy/website/pull/145).

Comment thread
naturedamends marked this conversation as resolved.
Outdated
Here's a default Docker Compose file:

```yaml
version: "3.8"

services:
beszel:
image: henrygd/beszel:0.10.2
image: henrygd/beszel:0.18
restart: unless-stopped
#environment:
# - APP_URL=http://beszel.lan
ports:
- 8090
volumes:
- beszel_data:/beszel_data
- /var/run/docker.sock:/var/run/docker.sock:ro

volumes:
beszel_data: {}
Expand All @@ -57,7 +60,7 @@ version: "3.8"

services:
beszel:
image: henrygd/beszel:0.10.2
image: henrygd/beszel:0.18
restart: unless-stopped
ports:
- 8090
Expand Down