Skip to content

Commit

Permalink
Merge pull request #135 from wayofdev/ci/e2e-testing
Browse files Browse the repository at this point in the history
  • Loading branch information
lotyp authored Jun 4, 2024
2 parents 76d0865 + 709eb30 commit d5645ef
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -79,7 +79,7 @@ If you **like/use** this project, please consider ⭐️ **starring** it. Thanks

## 🚀 Quick Start (macOS)

1. Install Homebrew (**optional** if not installed):
1. **Install Homebrew (if not installed):**

```bash
/bin/bash -c "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/HEAD/install.sh)"
Expand Down Expand Up @@ -178,7 +178,7 @@ Your project should use the shared Docker network `network.ss` and Traefik label
services:
web:
image: wayofdev/nginx:k8s-alpine-latest
container_name: ${COMPOSE_PROJECT_NAME}-web
container_name: laravel-starter-tpl-web
restart: on-failure
+ networks:
+ - default
Expand All @@ -192,10 +192,10 @@ services:
- ./.env:/app/.env
+ labels:
+ - traefik.enable=true
+ - traefik.http.routers.api-${COMPOSE_PROJECT_NAME}-secure.rule=Host(`api.${COMPOSE_PROJECT_NAME}.docker`)
+ - traefik.http.routers.api-${COMPOSE_PROJECT_NAME}-secure.entrypoints=websecure
+ - traefik.http.routers.api-${COMPOSE_PROJECT_NAME}-secure.tls=true
+ - traefik.http.services.api-${COMPOSE_PROJECT_NAME}-secure.loadbalancer.server.port=8880
+ - traefik.http.routers.api-laravel-starter-tpl-secure.rule=Host(`api.laravel-starter-tpl.docker`)
+ - traefik.http.routers.api-laravel-starter-tpl-secure.entrypoints=websecure
+ - traefik.http.routers.api-laravel-starter-tpl-secure.tls=true
+ - traefik.http.services.api-laravel-starter-tpl-secure.loadbalancer.server.port=8880
+ - traefik.docker.network=network.ss

networks:
Expand Down

0 comments on commit d5645ef

Please sign in to comment.