技术 无法成功部署求助

toyqiu · 2024年10月06日 · 最后由 coding 回复于 2024年10月07日 · 215 次阅读

不是完全小白。

先是

docker run -d --name=pixman -p 5050:5000 pixman/pixman

在群晖和 ubuntu 上分别运行,日志内容如下

No log line matching the '' filter

然后试着 docker-compose

version: "3.8"
services:
  pixman:
    image: pixman/pixman:v1.7.17
    restart: always
    container_name: pixman
    environment:
      - http_proxy=http://192.168.5.100:10811
      - https_proxy=http://192.168.5.100:10811
      - MYTVSUPER_TOKEN=pM9Usxar8zn2z7dmXNpdVfESSuxws77gTXR78BO2fI3n
    ports:
      - 5050:5000
    volumes:
      - /home/docker/pixman/m3u:/app/app/data/m3u
  pixman-nginx:
    image: nginx:latest
    restart: always
    container_name: pixman-nginx
    ports:
      - 8000:8000
    volumes:
      - /home/docker/pixman/pixman-nginx.conf:/etc/nginx/conf.d/pixman-nginx.conf
networks: {}

pixman/pixman: 在 dockerhub 上所有的版本都试过了,每一次,日志内容如下

No log line matching the '' filter

IP:5050 访问都是报错 404 Not Found nginx

一点头绪都没有

还是说已经成功了但是我使用的方法不对?

抱歉,是我无知了。 我看了别人的介绍文章,想当然地以为这是个部署网页在线看电视地项目。

toyqiu 回复

不是网页版哦

需要 登录 后方可回复, 如果你还没有账号请 注册新账号