mirror of
https://github.com/arch3rPro/1Panel-Appstore.git
synced 2026-05-03 20:52:12 +08:00
feat: update blinko 1.2.1
This commit is contained in:
@@ -1,6 +1,6 @@
|
|||||||
services:
|
services:
|
||||||
blinko:
|
blinko:
|
||||||
image: "blinkospace/blinko:1.1.2"
|
image: blinkospace/blinko:1.2.1
|
||||||
container_name: ${CONTAINER_NAME}
|
container_name: ${CONTAINER_NAME}
|
||||||
restart: always
|
restart: always
|
||||||
networks:
|
networks:
|
||||||
@@ -12,17 +12,21 @@ services:
|
|||||||
NEXTAUTH_SECRET: ${NEXTAUTH_SECRET}
|
NEXTAUTH_SECRET: ${NEXTAUTH_SECRET}
|
||||||
DATABASE_URL: postgresql://${PANEL_DB_USER}:${PANEL_DB_USER_PASSWORD}@${PANEL_DB_HOST}:${PANEL_DB_PORT}/${PANEL_DB_NAME}
|
DATABASE_URL: postgresql://${PANEL_DB_USER}:${PANEL_DB_USER_PASSWORD}@${PANEL_DB_HOST}:${PANEL_DB_PORT}/${PANEL_DB_NAME}
|
||||||
volumes:
|
volumes:
|
||||||
- "./data:/app/.blinko"
|
- ./data:/app/.blinko
|
||||||
ports:
|
ports:
|
||||||
- "${PANEL_APP_PORT_HTTP}:1111"
|
- ${PANEL_APP_PORT_HTTP}:1111
|
||||||
healthcheck:
|
healthcheck:
|
||||||
test: ["CMD", "curl", "-f", "http://localhost:1111/"]
|
test:
|
||||||
|
- CMD
|
||||||
|
- curl
|
||||||
|
- -f
|
||||||
|
- http://localhost:1111/
|
||||||
interval: 30s
|
interval: 30s
|
||||||
timeout: 10s
|
timeout: 10s
|
||||||
retries: 5
|
retries: 5
|
||||||
start_period: 30s
|
start_period: 30s
|
||||||
labels:
|
labels:
|
||||||
createdBy: "Apps"
|
createdBy: Apps
|
||||||
postgres:
|
postgres:
|
||||||
image: postgres:14
|
image: postgres:14
|
||||||
container_name: ${CONTAINER_NAME}-postgres
|
container_name: ${CONTAINER_NAME}-postgres
|
||||||
@@ -35,11 +39,15 @@ services:
|
|||||||
POSTGRES_PASSWORD: ${PANEL_DB_USER_PASSWORD}
|
POSTGRES_PASSWORD: ${PANEL_DB_USER_PASSWORD}
|
||||||
healthcheck:
|
healthcheck:
|
||||||
test:
|
test:
|
||||||
["CMD", "pg_isready", "-U", "postgres", "-d", "postgres"]
|
- CMD
|
||||||
|
- pg_isready
|
||||||
|
- -U
|
||||||
|
- postgres
|
||||||
|
- -d
|
||||||
|
- postgres
|
||||||
interval: 5s
|
interval: 5s
|
||||||
timeout: 10s
|
timeout: 10s
|
||||||
retries: 5
|
retries: 5
|
||||||
|
|
||||||
networks:
|
networks:
|
||||||
1panel-network:
|
1panel-network:
|
||||||
external: true
|
external: true
|
||||||
Reference in New Issue
Block a user