Auto Merge of PR 202 - maxun-tweaks-fixes_2025-09-12T06-16-34
Merged by Trez.One
This commit was merged in pull request #202.
This commit is contained in:
@@ -103,7 +103,7 @@
|
|||||||
| mastodon-valkey | docker.io/bitnami/valkey:latest | |
|
| mastodon-valkey | docker.io/bitnami/valkey:latest | |
|
||||||
| maxun-backend | getmaxun/maxun-backend:latest | |
|
| maxun-backend | getmaxun/maxun-backend:latest | |
|
||||||
| maxun-frontend | getmaxun/maxun-frontend:latest | No-code web data extraction platform |
|
| maxun-frontend | getmaxun/maxun-frontend:latest | No-code web data extraction platform |
|
||||||
| maxun-pg-db | postgres:13-alpine | |
|
| maxun-pg-db | postgres:17-alpine | |
|
||||||
| maxun-valkey | docker.io/bitnami/valkey:latest | |
|
| maxun-valkey | docker.io/bitnami/valkey:latest | |
|
||||||
| meilisearch | getmeili/meilisearch:v1.15 | |
|
| meilisearch | getmeili/meilisearch:v1.15 | |
|
||||||
| meme-search-pro | ghcr.io/neonwatty/meme_search_pro:latest | Meme search engine built with Python and Ruby |
|
| meme-search-pro | ghcr.io/neonwatty/meme_search_pro:latest | Meme search engine built with Python and Ruby |
|
||||||
|
|||||||
+10
-6
@@ -33,9 +33,9 @@ x-maxun: &maxun-env
|
|||||||
REDIS_PORT: 6379
|
REDIS_PORT: 6379
|
||||||
BACKEND_PORT: 8080
|
BACKEND_PORT: 8080
|
||||||
FRONTEND_PORT: 5173
|
FRONTEND_PORT: 5173
|
||||||
BACKEND_URL: https://scrape.${MY_TLD}/api
|
BACKEND_URL: https://scrape.${MY_TLD}
|
||||||
PUBLIC_URL: https://scrape.${MY_TLD}
|
PUBLIC_URL: https://scrape.${MY_TLD}
|
||||||
VITE_BACKEND_URL: https://scrape.${MY_TLD}/api
|
VITE_BACKEND_URL: https://scrape.${MY_TLD}
|
||||||
VITE_PUBLIC_URL: https://scrape.${MY_TLD}
|
VITE_PUBLIC_URL: https://scrape.${MY_TLD}
|
||||||
MAXUN_TELEMETRY: true
|
MAXUN_TELEMETRY: true
|
||||||
PLAYWRIGHT_BROWSERS_PATH: /ms-playwright
|
PLAYWRIGHT_BROWSERS_PATH: /ms-playwright
|
||||||
@@ -3739,8 +3739,12 @@ services:
|
|||||||
maxun-backend:
|
maxun-backend:
|
||||||
container_name: maxun-backend
|
container_name: maxun-backend
|
||||||
depends_on:
|
depends_on:
|
||||||
- maxun-pg-db
|
maxun-pg-db:
|
||||||
- minio
|
condition: service_healthy
|
||||||
|
required: true
|
||||||
|
minio:
|
||||||
|
condition: service_started
|
||||||
|
required: true
|
||||||
<<: *maxun-env
|
<<: *maxun-env
|
||||||
expose:
|
expose:
|
||||||
- 8080
|
- 8080
|
||||||
@@ -3767,7 +3771,7 @@ services:
|
|||||||
swag_port: 5173
|
swag_port: 5173
|
||||||
swag_url: scrape.${MY_TLD}
|
swag_url: scrape.${MY_TLD}
|
||||||
swag_server_custom_directive:
|
swag_server_custom_directive:
|
||||||
location /api {
|
location ~ ^/(auth|storage|record|workflow|robot|proxy|api-docs|api|webhook|socket.io)(/|$) {
|
||||||
proxy_pass http://maxun-backend:8080;
|
proxy_pass http://maxun-backend:8080;
|
||||||
}
|
}
|
||||||
swag.uptime-kuma.enabled: true
|
swag.uptime-kuma.enabled: true
|
||||||
@@ -3788,7 +3792,7 @@ services:
|
|||||||
restart: unless-stopped
|
restart: unless-stopped
|
||||||
maxun-pg-db:
|
maxun-pg-db:
|
||||||
container_name: maxun-pg-db
|
container_name: maxun-pg-db
|
||||||
image: postgres:13-alpine
|
image: postgres:17-alpine
|
||||||
environment:
|
environment:
|
||||||
POSTGRES_USER: maxun
|
POSTGRES_USER: maxun
|
||||||
POSTGRES_PASSWORD: ${MAXUN_DB_PASSWORD}
|
POSTGRES_PASSWORD: ${MAXUN_DB_PASSWORD}
|
||||||
|
|||||||
Reference in New Issue
Block a user