Skip to content

Commit 1c8b76b

Browse files
Merge pull request #14 from jeffersongoncalves/socketi-update
fix(soketi): update Traefik labels with correct router and host information
2 parents 07052a0 + 01f1145 commit 1c8b76b

File tree

2 files changed

+7
-6
lines changed

2 files changed

+7
-6
lines changed

Applications/soketi/README.md

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,7 @@ Documentação do Soketi
55
[https://docs.soketi.app/](https://docs.soketi.app/)
66

77
Docker image
8+
89
[quay.io/soketi/soketi](https://quay.io/repository/soketi/soketi?tab=info)
910

1011
## Usage
@@ -14,9 +15,9 @@ Ajustar o endpoint do traefik no arquivo docker-compose.yml
1415
```yaml
1516
labels:
1617
- "traefik.enable=true"
17-
- "traefik.http.routers.CONTAINER_NAME.rule=Host(`HOSTNAME`)"
18-
- "traefik.http.routers.CONTAINER_NAME.entrypoints=websecure"
19-
- "traefik.http.services.CONTAINER_NAME.loadbalancer.server.port=6001"
18+
- "traefik.http.routers.soketi.rule=Host(`soketi.yourdomain.online`)"
19+
- "traefik.http.routers.soketi.entrypoints=websecure"
20+
- "traefik.http.services.soketi.loadbalancer.server.port=6001"
2021
- "traefik.docker.network=production"
2122
```
2223

Applications/soketi/docker-compose.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -18,9 +18,9 @@ services:
1818
- '6001:6001'
1919
labels:
2020
- "traefik.enable=true"
21-
- "traefik.http.routers.CONTAINER_NAME.rule=Host(`HOSTNAME`)"
22-
- "traefik.http.routers.CONTAINER_NAME.entrypoints=websecure"
23-
- "traefik.http.services.CONTAINER_NAME.loadbalancer.server.port=6001"
21+
- "traefik.http.routers.soketi.rule=Host(`soketi.yourdomain.online`)"
22+
- "traefik.http.routers.soketi.entrypoints=websecure"
23+
- "traefik.http.services.soketi.loadbalancer.server.port=6001"
2424
- "traefik.docker.network=production"
2525
networks:
2626
- applications

0 commit comments

Comments
 (0)