Skip to content

Commit 8a97682

Browse files
committed
Develop: Add start-traefik and stop-traefik targets to Makefile
Signed-off-by: Michael Mayer <michael@photoprism.app>
1 parent e80c1e1 commit 8a97682

File tree

6 files changed

+9
-5
lines changed

6 files changed

+9
-5
lines changed

Makefile

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -705,6 +705,10 @@ docker-release-plucky:
705705
docker pull --platform=arm64 photoprism/develop:plucky
706706
docker pull --platform=arm64 photoprism/develop:plucky-slim
707707
scripts/docker/buildx-multi.sh photoprism linux/amd64,linux/arm64 ce /plucky
708+
start-traefik:
709+
$(DOCKER_COMPOSE) up -d --wait traefik
710+
stop-traefik:
711+
$(DOCKER_COMPOSE) down traefik
708712
start-local:
709713
$(DOCKER_COMPOSE) -f compose.local.yaml up -d --wait
710714
stop-local:

compose.latest.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -63,7 +63,7 @@ services:
6363
- "./storage:/photoprism/storage"
6464
- "./storage/originals:/photoprism/originals"
6565

66-
## Join shared "photoprism-develop" network
66+
## Join shared "photoprism" network
6767
networks:
6868
default:
6969
name: photoprism

compose.local.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -70,7 +70,7 @@ services:
7070
volumes:
7171
- "./storage:/photoprism/storage"
7272

73-
## Join shared "photoprism-develop" network
73+
## Join shared "photoprism" network
7474
networks:
7575
default:
7676
name: photoprism

compose.mariadb.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -145,7 +145,7 @@ services:
145145
MYSQL_PASSWORD: "photoprism"
146146
MYSQL_ROOT_PASSWORD: "photoprism"
147147

148-
## Join shared "photoprism-develop" network
148+
## Join shared "photoprism" network
149149
networks:
150150
default:
151151
name: photoprism

compose.mysql.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ services:
1515
MYSQL_PASSWORD: "photoprism"
1616
MYSQL_ROOT_PASSWORD: "photoprism"
1717

18-
## Join shared "photoprism-develop" network
18+
## Join shared "photoprism" network
1919
networks:
2020
default:
2121
name: photoprism

compose.preview.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -63,7 +63,7 @@ services:
6363
- "./storage:/photoprism/storage"
6464
- "./storage/originals:/photoprism/originals"
6565

66-
## Join shared "photoprism-develop" network
66+
## Join shared "photoprism" network
6767
networks:
6868
default:
6969
name: photoprism

0 commit comments

Comments
 (0)