A tool for parsing traffic on the jetstream and applying a moderation workstream based on regexp based rules

Updated to account for docker compose

+7 -5
+7 -5
README.md
··· 72 72 You can also build and run the application as a Docker container. 73 73 74 74 ```bash 75 - # Build the container 76 - docker build -pull -t skywatch-automod . 75 + docker compose up --build 76 + ``` 77 77 78 - # Run the container 79 - docker run -d -p 4101:4101 skywatch-automod 78 + To run it in the background, add the `-d` flag: 79 + 80 + ```bash 81 + docker compose up --build -d 80 82 ``` 81 83 82 - Make sure your `.env` file is present when building the Docker image, as it will be copied into the container. 84 + Make sure your `.env` file is present when building the Docker image, as it will be copied into the container. We recommend creating an empty `cursor.txt` file in the application root directory as well. 83 85 84 86 #### Configuration Variables 85 87