Skip to content

Commit 5708e36

Browse files
committed
chore: Fix depends on
1 parent 79e8fb4 commit 5708e36

File tree

2 files changed

+10
-14
lines changed

2 files changed

+10
-14
lines changed

docker-compose.full-gluetun.yml

Lines changed: 5 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@ services:
4747
depends_on:
4848
gluetun:
4949
condition: service_started
50-
m3u-editor-fpm:
50+
fpm:
5151
condition: service_healthy
5252
#ports:
5353
# # Expose the main app port
@@ -122,7 +122,7 @@ services:
122122
image: sparkison/m3u-editor-fpm:${IMAGE_TAG:-latest}
123123
environment:
124124
# App settings
125-
- APP_ENV=${APP_ENV:-local}
125+
- APP_ENV=${APP_ENV:-production}
126126
- APP_DEBUG=${APP_DEBUG:-false}
127127
- APP_URL=${APP_URL:-http://localhost} # Application URL/IP for accessing on LAN/WAN
128128
- APP_PORT=${APP_PORT:-36400}
@@ -152,11 +152,9 @@ services:
152152
depends_on:
153153
gluetun:
154154
condition: service_started
155-
m3u-editor-postgres:
155+
postgres:
156156
condition: service_healthy
157-
m3u-editor-redis:
158-
condition: service_healthy
159-
m3u-proxy:
157+
redis:
160158
condition: service_healthy
161159
volumes:
162160
- ./data:/var/www/config
@@ -194,7 +192,7 @@ services:
194192
depends_on:
195193
gluetun:
196194
condition: service_started
197-
m3u-editor-redis:
195+
redis:
198196
condition: service_healthy
199197
#ports:
200198
# - '${M3U_PROXY_PORT:-38085}:${M3U_PROXY_PORT:-38085}'

docker-compose.full.yml

Lines changed: 5 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ services:
2525
# Websocket Reverb port for reverse proxying
2626
- REVERB_PORT=${REVERB_PORT:-36800}
2727
depends_on:
28-
m3u-editor-fpm:
28+
fpm:
2929
condition: service_healthy
3030
ports:
3131
# Expose the main app port
@@ -91,7 +91,7 @@ services:
9191
image: sparkison/m3u-editor-fpm:${IMAGE_TAG:-latest}
9292
environment:
9393
# App settings
94-
- APP_ENV=${APP_ENV:-local}
94+
- APP_ENV=${APP_ENV:-production}
9595
- APP_DEBUG=${APP_DEBUG:-false}
9696
- APP_URL=${APP_URL:-http://localhost} # Application URL/IP for accessing on LAN/WAN
9797
- APP_PORT=${APP_PORT:-36400}
@@ -119,11 +119,9 @@ services:
119119
# Default format: <APP_URL>:<APP_PORT>/m3u-proxy
120120
- M3U_PROXY_PUBLIC_URL=${M3U_PROXY_PUBLIC_URL:-http://localhost:36400/m3u-proxy}
121121
depends_on:
122-
m3u-editor-postgres:
122+
postgres:
123123
condition: service_healthy
124-
m3u-editor-redis:
125-
condition: service_healthy
126-
m3u-proxy:
124+
redis:
127125
condition: service_healthy
128126
volumes:
129127
- ./data:/var/www/config
@@ -158,7 +156,7 @@ services:
158156
- REDIS_DB=6 # Use a separate Redis DB for m3u-proxy caching, 1-5 used by editor
159157
- ENABLE_TRANSCODING_POOLING=true
160158
depends_on:
161-
m3u-editor-redis:
159+
redis:
162160
condition: service_healthy
163161
#ports:
164162
# - '${M3U_PROXY_PORT:-38085}:${M3U_PROXY_PORT:-38085}'

0 commit comments

Comments
 (0)