diff --git a/supervisor/README.md b/supervisor/README.md index 1152e47..4d6e5a5 100644 --- a/supervisor/README.md +++ b/supervisor/README.md @@ -1,8 +1,10 @@ +## Run ```sh sudo apt install -y supervisor supervisord -c supervisord.conf -n ``` +## `supervisord.conf` ```toml [supervisord] nodaemon=true @@ -28,3 +30,42 @@ stderr_logfile=/dev/stderr stderr_logfile_maxbytes=0 ``` +## compose.yml +```yaml +services: + chrome: + image: yauk.tv/python + build: + dockerfile_inline: | + FROM debian + + RUN apt-get update && apt-get install -y chromium supervisor + RUN pip install mitmproxy + + COPY <