mirror of
https://github.com/appwrite/appwrite.git
synced 2026-05-26 13:51:13 +00:00
Compare commits
7
Commits
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
f51706970d | ||
|
|
b71f48e034 | ||
|
|
10b94fa81b | ||
|
|
930e2451ec | ||
|
|
0e98daf9d1 | ||
|
|
77e7550795 | ||
|
|
dd27e9c5fa |
+13
-13
@@ -59,22 +59,23 @@ RUN mkdir -p /storage/uploads && \
|
||||
# Executables
|
||||
RUN chmod +x /usr/local/bin/doctor && \
|
||||
chmod +x /usr/local/bin/install && \
|
||||
chmod +x /usr/local/bin/maintenance && \
|
||||
chmod +x /usr/local/bin/migrate && \
|
||||
chmod +x /usr/local/bin/realtime && \
|
||||
chmod +x /usr/local/bin/schedule-functions && \
|
||||
chmod +x /usr/local/bin/schedule-executions && \
|
||||
chmod +x /usr/local/bin/schedule-messages && \
|
||||
chmod +x /usr/local/bin/sdks && \
|
||||
chmod +x /usr/local/bin/specs && \
|
||||
chmod +x /usr/local/bin/ssl && \
|
||||
chmod +x /usr/local/bin/test && \
|
||||
chmod +x /usr/local/bin/upgrade && \
|
||||
chmod +x /usr/local/bin/vars && \
|
||||
chmod +x /usr/local/bin/queue-retry && \
|
||||
chmod +x /usr/local/bin/queue-count-failed && \
|
||||
chmod +x /usr/local/bin/queue-count-processing && \
|
||||
chmod +x /usr/local/bin/queue-count-success && \
|
||||
chmod +x /usr/local/bin/server-realtime && \
|
||||
chmod +x /usr/local/bin/task-migrate && \
|
||||
chmod +x /usr/local/bin/task-sdks && \
|
||||
chmod +x /usr/local/bin/task-specs && \
|
||||
chmod +x /usr/local/bin/task-maintenance && \
|
||||
chmod +x /usr/local/bin/task-schedule-functions && \
|
||||
chmod +x /usr/local/bin/task-schedule-executions && \
|
||||
chmod +x /usr/local/bin/task-schedule-messages && \
|
||||
chmod +x /usr/local/bin/task-queue-retry && \
|
||||
chmod +x /usr/local/bin/task-queue-count-failed && \
|
||||
chmod +x /usr/local/bin/task-queue-count-processing && \
|
||||
chmod +x /usr/local/bin/task-queue-count-success && \
|
||||
chmod +x /usr/local/bin/task-stats-resources && \
|
||||
chmod +x /usr/local/bin/worker-audits && \
|
||||
chmod +x /usr/local/bin/worker-builds && \
|
||||
chmod +x /usr/local/bin/worker-certificates && \
|
||||
@@ -87,7 +88,6 @@ RUN chmod +x /usr/local/bin/doctor && \
|
||||
chmod +x /usr/local/bin/worker-webhooks && \
|
||||
chmod +x /usr/local/bin/worker-stats-usage && \
|
||||
chmod +x /usr/local/bin/worker-stats-usage-dump && \
|
||||
chmod +x /usr/local/bin/stats-resources && \
|
||||
chmod +x /usr/local/bin/worker-stats-resources && \
|
||||
chmod +x /usr/local/bin/worker-usage && \
|
||||
chmod +x /usr/local/bin/worker-usage-dump
|
||||
|
||||
@@ -164,9 +164,9 @@ $image = $this->getParam('image', '');
|
||||
- _APP_MIGRATIONS_FIREBASE_CLIENT_SECRET
|
||||
- _APP_ASSISTANT_OPENAI_API_KEY
|
||||
|
||||
appwrite-console:
|
||||
appwrite-server-console:
|
||||
<<: *x-logging
|
||||
container_name: appwrite-console
|
||||
container_name: appwrite-server-console
|
||||
image: <?php echo $organization; ?>/console:5.2.27
|
||||
restart: unless-stopped
|
||||
networks:
|
||||
@@ -186,10 +186,10 @@ $image = $this->getParam('image', '');
|
||||
- traefik.http.routers.appwrite_console_https.service=appwrite_console
|
||||
- traefik.http.routers.appwrite_console_https.tls=true
|
||||
|
||||
appwrite-realtime:
|
||||
appwrite-server-realtime:
|
||||
image: <?php echo $organization; ?>/<?php echo $image; ?>:<?php echo $version."\n"; ?>
|
||||
entrypoint: realtime
|
||||
container_name: appwrite-realtime
|
||||
entrypoint: server-realtime
|
||||
container_name: appwrite-server-realtime
|
||||
<<: *x-logging
|
||||
restart: unless-stopped
|
||||
labels:
|
||||
@@ -617,7 +617,7 @@ $image = $this->getParam('image', '');
|
||||
|
||||
appwrite-task-maintenance:
|
||||
image: <?php echo $organization; ?>/<?php echo $image; ?>:<?php echo $version."\n"; ?>
|
||||
entrypoint: maintenance
|
||||
entrypoint: task-maintenance
|
||||
<<: *x-logging
|
||||
container_name: appwrite-task-maintenance
|
||||
restart: unless-stopped
|
||||
@@ -652,7 +652,7 @@ $image = $this->getParam('image', '');
|
||||
appwrite-task-stats-resources:
|
||||
image: <?php echo $organization; ?>/<?php echo $image; ?>:<?php echo $version."\n"; ?>
|
||||
container_name: appwrite-task-stats-resources
|
||||
entrypoint: stats-resources
|
||||
entrypoint: task-stats-resources
|
||||
<<: *x-logging
|
||||
networks:
|
||||
- appwrite
|
||||
@@ -766,7 +766,7 @@ $image = $this->getParam('image', '');
|
||||
|
||||
appwrite-task-scheduler-functions:
|
||||
image: <?php echo $organization; ?>/<?php echo $image; ?>:<?php echo $version."\n"; ?>
|
||||
entrypoint: schedule-functions
|
||||
entrypoint: task-schedule-functions
|
||||
container_name: appwrite-task-scheduler-functions
|
||||
<<: *x-logging
|
||||
restart: unless-stopped
|
||||
@@ -791,7 +791,7 @@ $image = $this->getParam('image', '');
|
||||
|
||||
appwrite-task-scheduler-executions:
|
||||
image: <?php echo $organization; ?>/<?php echo $image; ?>:<?php echo $version."\n"; ?>
|
||||
entrypoint: schedule-executions
|
||||
entrypoint: task-schedule-executions
|
||||
container_name: appwrite-task-scheduler-executions
|
||||
<<: *x-logging
|
||||
restart: unless-stopped
|
||||
@@ -816,7 +816,7 @@ $image = $this->getParam('image', '');
|
||||
|
||||
appwrite-task-scheduler-messages:
|
||||
image: <?php echo $organization; ?>/<?php echo $image; ?>:<?php echo $version."\n"; ?>
|
||||
entrypoint: schedule-messages
|
||||
entrypoint: task-schedule-messages
|
||||
container_name: appwrite-task-scheduler-messages
|
||||
<<: *x-logging
|
||||
restart: unless-stopped
|
||||
|
||||
+10
-10
@@ -197,9 +197,9 @@ services:
|
||||
- _APP_DATABASE_SHARED_NAMESPACE
|
||||
- _APP_FUNCTIONS_CREATION_ABUSE_LIMIT
|
||||
|
||||
appwrite-console:
|
||||
appwrite-server-console:
|
||||
<<: *x-logging
|
||||
container_name: appwrite-console
|
||||
container_name: appwrite-server-console
|
||||
image: appwrite/console:5.2.27
|
||||
restart: unless-stopped
|
||||
networks:
|
||||
@@ -219,10 +219,10 @@ services:
|
||||
- traefik.http.routers.appwrite_console_https.service=appwrite_console
|
||||
- traefik.http.routers.appwrite_console_https.tls=true
|
||||
|
||||
appwrite-realtime:
|
||||
entrypoint: realtime
|
||||
appwrite-server-realtime:
|
||||
entrypoint: server-realtime
|
||||
<<: *x-logging
|
||||
container_name: appwrite-realtime
|
||||
container_name: appwrite-server-realtime
|
||||
image: appwrite-dev
|
||||
restart: unless-stopped
|
||||
ports:
|
||||
@@ -685,7 +685,7 @@ services:
|
||||
- _APP_DATABASE_SHARED_TABLES
|
||||
|
||||
appwrite-task-maintenance:
|
||||
entrypoint: maintenance
|
||||
entrypoint: task-maintenance
|
||||
<<: *x-logging
|
||||
container_name: appwrite-task-maintenance
|
||||
image: appwrite-dev
|
||||
@@ -724,7 +724,7 @@ services:
|
||||
|
||||
appwrite-task-stats-resources:
|
||||
container_name: appwrite-task-stats-resources
|
||||
entrypoint: stats-resources
|
||||
entrypoint: task-stats-resources
|
||||
<<: *x-logging
|
||||
image: appwrite-dev
|
||||
networks:
|
||||
@@ -848,7 +848,7 @@ services:
|
||||
- _APP_STATS_USAGE_DUAL_WRITING_DBS
|
||||
|
||||
appwrite-task-scheduler-functions:
|
||||
entrypoint: schedule-functions
|
||||
entrypoint: task-schedule-functions
|
||||
<<: *x-logging
|
||||
container_name: appwrite-task-scheduler-functions
|
||||
image: appwrite-dev
|
||||
@@ -876,7 +876,7 @@ services:
|
||||
- _APP_DATABASE_SHARED_TABLES
|
||||
|
||||
appwrite-task-scheduler-executions:
|
||||
entrypoint: schedule-executions
|
||||
entrypoint: task-schedule-executions
|
||||
<<: *x-logging
|
||||
container_name: appwrite-task-scheduler-executions
|
||||
image: appwrite-dev
|
||||
@@ -903,7 +903,7 @@ services:
|
||||
- _APP_DB_PASS
|
||||
|
||||
appwrite-task-scheduler-messages:
|
||||
entrypoint: schedule-messages
|
||||
entrypoint: task-schedule-messages
|
||||
<<: *x-logging
|
||||
container_name: appwrite-task-scheduler-messages
|
||||
image: appwrite-dev
|
||||
|
||||
Reference in New Issue
Block a user