Skip to content

Commit c95ae9e

Browse files
authored
Merge branch 'api-platform:main' into Devcontainer
2 parents 34c2a0f + 3714ef8 commit c95ae9e

3 files changed

Lines changed: 5 additions & 4 deletions

File tree

docker-compose.override.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -32,6 +32,7 @@ services:
3232
WATCHPACK_POLLING: "true"
3333

3434
caddy:
35+
command: [ "caddy", "run", "--config", "/etc/caddy/Caddyfile", "--watch" ]
3536
build:
3637
context: api/
3738
target: caddy_base

docker-compose.prod.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ services:
1717

1818
caddy:
1919
build:
20-
context: api/
20+
context: ./api/
2121
target: caddy_prod
2222
environment:
2323
MERCURE_PUBLISHER_JWT_KEY: ${CADDY_MERCURE_JWT_SECRET}

docker-compose.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ version: "3.4"
22

33
services:
44
php:
5-
image: app-php
5+
image: ${IMAGES_PREFIX:-}app-php
66
depends_on:
77
- database
88
restart: unless-stopped
@@ -22,12 +22,12 @@ services:
2222
MERCURE_JWT_SECRET: ${CADDY_MERCURE_JWT_SECRET:-!ChangeThisMercureHubJWTSecretKey!}
2323

2424
pwa:
25-
image: app-pwa
25+
image: ${IMAGES_PREFIX:-}app-pwa
2626
environment:
2727
NEXT_PUBLIC_ENTRYPOINT: http://caddy
2828

2929
caddy:
30-
image: app-caddy
30+
image: ${IMAGES_PREFIX:-}app-caddy
3131
depends_on:
3232
- php
3333
- pwa

0 commit comments

Comments
 (0)