Skip to content

Commit adce67b

Browse files
committed
nextjs-tailwind-starter --> nextjs-tailwindcss
1 parent aebcbab commit adce67b

File tree

4 files changed

+19
-19
lines changed

4 files changed

+19
-19
lines changed

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -24,13 +24,13 @@ This repository is a minimal setup for running your services with Docker (Compos
2424
> nano .env
2525
```
2626

27-
4. Get the service repo (e.g. `nextjs-tailwind-starter`)
27+
4. Get the service repo (e.g. `nextjs-tailwindcss`)
2828

2929
```bash
30-
> bash run/get-repo.sh nextjs-tailwind-starter
30+
> bash run/get-repo.sh nextjs-tailwindcss
3131
```
3232

33-
It will fetch the following repo `https://github.com/starters-dev/nextjs-tailwind-starter`
33+
It will fetch the following repo `https://github.com/starters-dev/nextjs-tailwindcss`
3434

3535
5. Build and run
3636

docker-compose.nextjs-tailwind.yml

Lines changed: 0 additions & 15 deletions
This file was deleted.
Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
version: "3.7"
2+
3+
services:
4+
nextjs-tailwindcss:
5+
build: ../nextjs-tailwindcss
6+
restart: always
7+
labels:
8+
- "traefik.enable=true"
9+
- "traefik.http.routers.nextjs-tailwindcss.rule=Host(`nextjs-tailwindcss.${DOMAIN_NAME}`)"
10+
- "traefik.http.routers.nextjs-tailwindcss.entryPoints=http"
11+
- "traefik.http.routers.nextjs-tailwindcss.middlewares=https_redirect"
12+
- "traefik.http.middlewares.https_redirect.redirectscheme.scheme=https"
13+
- "traefik.http.routers.nextjs-tailwindcss_tls.rule=Host(`nextjs-tailwindcss.${DOMAIN_NAME}`)"
14+
- "traefik.http.routers.nextjs-tailwindcss_tls.entryPoints=https"
15+
- "traefik.http.routers.nextjs-tailwindcss_tls.tls.certresolver=mydnschallenge"

run/build.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
FILES="-f docker-compose.yml -f docker-compose.nextjs-tailwind.yml"
1+
FILES="-f docker-compose.yml -f docker-compose.nextjs-tailwindcss.yml"
22

33
# first setup
44
sh run/setup.sh

0 commit comments

Comments
 (0)