Resume-Matcher icon indicating copy to clipboard operation
Resume-Matcher copied to clipboard

struggling to start it in docker

Open hycday opened this issue 1 month ago • 0 comments

I created the following docker-compose.yml (no git clone etc) :


version: '3.7'

services:
  resume-matcher:
    image: resume-matcher
    container_name: ats-resume
    ports:
      - 1234:1234
    networks:
      - caddy
    labels:
      caddy: mydomain.ltd
      caddy.reverse_proxy: "{{upstreams 1234}}"
    restart: unless-stopped
networks:
  caddy:
    external: true

then I launch docker compose up -d --build I get a success message but when I check the docker container ls, I see that it restarts in loop so I check the logs of the docker and I see :

ats-resume  | Error: Invalid value: File does not exist: streamlit_app.py
ats-resume  | Usage: streamlit run [OPTIONS] TARGET [ARGS]...
ats-resume  | Try 'streamlit run --help' for help.

is there anything in particular that I need to do here ?

thanks for the help !

hycday avatar Jan 19 '25 20:01 hycday