mirror of
https://github.com/QYG2297248353/appstore-1panel.git
synced 2026-06-16 01:02:14 +08:00
Processed apps directory via GitHub Actions
This commit is contained in:
+1
-1
@@ -30,7 +30,7 @@ services:
|
|||||||
- -e
|
- -e
|
||||||
- fetch('http://127.0.0.1:18789/healthz').then((r)=>process.exit(r.ok?0:1)).catch(()=>process.exit(1))
|
- fetch('http://127.0.0.1:18789/healthz').then((r)=>process.exit(r.ok?0:1)).catch(()=>process.exit(1))
|
||||||
timeout: 5s
|
timeout: 5s
|
||||||
image: ghcr.io/openclaw/openclaw:2026.5.7
|
image: ghcr.io/openclaw/openclaw:2026.5.12
|
||||||
init: true
|
init: true
|
||||||
labels:
|
labels:
|
||||||
createdBy: Apps
|
createdBy: Apps
|
||||||
+1
-1
@@ -12,7 +12,7 @@ services:
|
|||||||
POSTGRES_INITDB_ARGS: --data-checksums
|
POSTGRES_INITDB_ARGS: --data-checksums
|
||||||
POSTGRES_PASSWORD: ${POSTGRES_PASSWORD}
|
POSTGRES_PASSWORD: ${POSTGRES_PASSWORD}
|
||||||
POSTGRES_USER: ${POSTGRES_USER:-postgres}
|
POSTGRES_USER: ${POSTGRES_USER:-postgres}
|
||||||
image: postgres:16.13-alpine
|
image: postgres:16.14-alpine
|
||||||
labels:
|
labels:
|
||||||
createdBy: Apps
|
createdBy: Apps
|
||||||
networks:
|
networks:
|
||||||
+1
-1
@@ -12,7 +12,7 @@ services:
|
|||||||
POSTGRES_INITDB_ARGS: --data-checksums
|
POSTGRES_INITDB_ARGS: --data-checksums
|
||||||
POSTGRES_PASSWORD: ${POSTGRES_PASSWORD}
|
POSTGRES_PASSWORD: ${POSTGRES_PASSWORD}
|
||||||
POSTGRES_USER: ${POSTGRES_USER:-postgres}
|
POSTGRES_USER: ${POSTGRES_USER:-postgres}
|
||||||
image: postgres:17.9
|
image: postgres:16.14
|
||||||
labels:
|
labels:
|
||||||
createdBy: Apps
|
createdBy: Apps
|
||||||
networks:
|
networks:
|
||||||
+1
-1
@@ -12,7 +12,7 @@ services:
|
|||||||
POSTGRES_INITDB_ARGS: --data-checksums
|
POSTGRES_INITDB_ARGS: --data-checksums
|
||||||
POSTGRES_PASSWORD: ${POSTGRES_PASSWORD}
|
POSTGRES_PASSWORD: ${POSTGRES_PASSWORD}
|
||||||
POSTGRES_USER: ${POSTGRES_USER:-postgres}
|
POSTGRES_USER: ${POSTGRES_USER:-postgres}
|
||||||
image: postgres:17.9-alpine
|
image: postgres:17.10-alpine
|
||||||
labels:
|
labels:
|
||||||
createdBy: Apps
|
createdBy: Apps
|
||||||
networks:
|
networks:
|
||||||
+1
-1
@@ -12,7 +12,7 @@ services:
|
|||||||
POSTGRES_INITDB_ARGS: --data-checksums
|
POSTGRES_INITDB_ARGS: --data-checksums
|
||||||
POSTGRES_PASSWORD: ${POSTGRES_PASSWORD}
|
POSTGRES_PASSWORD: ${POSTGRES_PASSWORD}
|
||||||
POSTGRES_USER: ${POSTGRES_USER:-postgres}
|
POSTGRES_USER: ${POSTGRES_USER:-postgres}
|
||||||
image: postgres:16.13
|
image: postgres:17.10
|
||||||
labels:
|
labels:
|
||||||
createdBy: Apps
|
createdBy: Apps
|
||||||
networks:
|
networks:
|
||||||
@@ -30,7 +30,7 @@ services:
|
|||||||
- -e
|
- -e
|
||||||
- fetch('http://127.0.0.1:18789/healthz').then((r)=>process.exit(r.ok?0:1)).catch(()=>process.exit(1))
|
- fetch('http://127.0.0.1:18789/healthz').then((r)=>process.exit(r.ok?0:1)).catch(()=>process.exit(1))
|
||||||
timeout: 5s
|
timeout: 5s
|
||||||
image: ghcr.io/openclaw/openclaw:2026.5.7
|
image: ghcr.io/openclaw/openclaw:2026.5.12
|
||||||
init: true
|
init: true
|
||||||
labels:
|
labels:
|
||||||
createdBy: Apps
|
createdBy: Apps
|
||||||
|
|||||||
@@ -12,7 +12,7 @@ services:
|
|||||||
POSTGRES_INITDB_ARGS: --data-checksums
|
POSTGRES_INITDB_ARGS: --data-checksums
|
||||||
POSTGRES_PASSWORD: ${POSTGRES_PASSWORD}
|
POSTGRES_PASSWORD: ${POSTGRES_PASSWORD}
|
||||||
POSTGRES_USER: ${POSTGRES_USER:-postgres}
|
POSTGRES_USER: ${POSTGRES_USER:-postgres}
|
||||||
image: postgres:16.13-alpine
|
image: postgres:16.14-alpine
|
||||||
labels:
|
labels:
|
||||||
createdBy: Apps
|
createdBy: Apps
|
||||||
networks:
|
networks:
|
||||||
|
|||||||
+1
-1
@@ -12,7 +12,7 @@ services:
|
|||||||
POSTGRES_INITDB_ARGS: --data-checksums
|
POSTGRES_INITDB_ARGS: --data-checksums
|
||||||
POSTGRES_PASSWORD: ${POSTGRES_PASSWORD}
|
POSTGRES_PASSWORD: ${POSTGRES_PASSWORD}
|
||||||
POSTGRES_USER: ${POSTGRES_USER:-postgres}
|
POSTGRES_USER: ${POSTGRES_USER:-postgres}
|
||||||
image: postgres:16.13
|
image: postgres:16.14
|
||||||
labels:
|
labels:
|
||||||
createdBy: Apps
|
createdBy: Apps
|
||||||
networks:
|
networks:
|
||||||
@@ -0,0 +1,24 @@
|
|||||||
|
networks:
|
||||||
|
1panel-network:
|
||||||
|
external: true
|
||||||
|
services:
|
||||||
|
postgresql:
|
||||||
|
container_name: postgresql
|
||||||
|
env_file:
|
||||||
|
- ./envs/global.env
|
||||||
|
- .env
|
||||||
|
environment:
|
||||||
|
POSTGRES_DB: ${POSTGRES_DB:-postgres}
|
||||||
|
POSTGRES_INITDB_ARGS: --data-checksums
|
||||||
|
POSTGRES_PASSWORD: ${POSTGRES_PASSWORD}
|
||||||
|
POSTGRES_USER: ${POSTGRES_USER:-postgres}
|
||||||
|
image: postgres:17.10-alpine
|
||||||
|
labels:
|
||||||
|
createdBy: Apps
|
||||||
|
networks:
|
||||||
|
- 1panel-network
|
||||||
|
ports:
|
||||||
|
- ${PANEL_APP_PORT_HTTP}:5432
|
||||||
|
restart: always
|
||||||
|
volumes:
|
||||||
|
- ${POSTGRES_ROOT_PATH}/data:/var/lib/postgresql/data
|
||||||
+1
-1
@@ -12,7 +12,7 @@ services:
|
|||||||
POSTGRES_INITDB_ARGS: --data-checksums
|
POSTGRES_INITDB_ARGS: --data-checksums
|
||||||
POSTGRES_PASSWORD: ${POSTGRES_PASSWORD}
|
POSTGRES_PASSWORD: ${POSTGRES_PASSWORD}
|
||||||
POSTGRES_USER: ${POSTGRES_USER:-postgres}
|
POSTGRES_USER: ${POSTGRES_USER:-postgres}
|
||||||
image: postgres:17.9
|
image: postgres:17.10
|
||||||
labels:
|
labels:
|
||||||
createdBy: Apps
|
createdBy: Apps
|
||||||
networks:
|
networks:
|
||||||
@@ -1,24 +0,0 @@
|
|||||||
networks:
|
|
||||||
1panel-network:
|
|
||||||
external: true
|
|
||||||
services:
|
|
||||||
postgresql:
|
|
||||||
container_name: postgresql
|
|
||||||
env_file:
|
|
||||||
- ./envs/global.env
|
|
||||||
- .env
|
|
||||||
environment:
|
|
||||||
POSTGRES_DB: ${POSTGRES_DB:-postgres}
|
|
||||||
POSTGRES_INITDB_ARGS: --data-checksums
|
|
||||||
POSTGRES_PASSWORD: ${POSTGRES_PASSWORD}
|
|
||||||
POSTGRES_USER: ${POSTGRES_USER:-postgres}
|
|
||||||
image: postgres:17.9-alpine
|
|
||||||
labels:
|
|
||||||
createdBy: Apps
|
|
||||||
networks:
|
|
||||||
- 1panel-network
|
|
||||||
ports:
|
|
||||||
- ${PANEL_APP_PORT_HTTP}:5432
|
|
||||||
restart: always
|
|
||||||
volumes:
|
|
||||||
- ${POSTGRES_ROOT_PATH}/data:/var/lib/postgresql/data
|
|
||||||
Reference in New Issue
Block a user