diff --git a/apps/showdoc/arm-latest/data.yml b/apps/showdoc/arm-latest/data.yml new file mode 100755 index 00000000..1e1ccc91 --- /dev/null +++ b/apps/showdoc/arm-latest/data.yml @@ -0,0 +1,9 @@ +additionalProperties: + formFields: + - default: 4999 + envKey: PANEL_APP_PORT_HTTP + labelEn: Port + labelZh: 端口 + required: true + rule: paramPort + type: number diff --git a/apps/showdoc/arm-latest/docker-compose.yml b/apps/showdoc/arm-latest/docker-compose.yml new file mode 100644 index 00000000..b997ae63 --- /dev/null +++ b/apps/showdoc/arm-latest/docker-compose.yml @@ -0,0 +1,19 @@ +version: '3' +services: + showdoc: + image: star7th/showdoc:arm-latest + container_name: ${CONTAINER_NAME} + restart: always + networks: + - 1panel-network + ports: + - ${PANEL_APP_PORT_HTTP}:80 + tty: true + volumes: + - /showdoc_data:/showdoc_data_old + - ./showdocdata/html:/var/www/html + labels: + createdBy: "Apps" +networks: + 1panel-network: + external: true \ No newline at end of file