Skip to content

2025-02-24 10:23 Build for x86-64

Latest
Compare
Choose a tag to compare
@github-actions github-actions released this 05 Jan 09:03
4caddff

Github Github

使用方法

docker load -i alpine_latest.tar.gz

视频教学

Bilibili

镜像说明

2025-02-24

neixin_random-pic-api-amd64.tar.gz 随机壁纸api镜像

services:
   random-api:
      container_name: random-api
      image: neixin/random-pic-api
      volumes:
         - ./portrait:/var/www/html/portrait # 竖屏图片
         - ./landscape:/var/www/html/landscape # 横屏图片
      ports:
         - 8588:80
   php_app:
      build: .
      container_name: php_app
      volumes:
         - ./:/var/www/html
      ports:
         - 8586:80
      depends_on:
         - random-api