Archon quick docker compose file

For those who need it, I made this compose file this morning. this runs in the same directory where the python script that creates the docker images runs. Nothing tremendously fancy. I couldn’t find one so i made one.

Order of operations here:

  1. Run the python script building the docker container
  2. Stop the newly created archon docker container
  3. “docker compose up -d” in the same directory.

place the below contents in a file in the archon directory called “docker-compose.yml”

---
services:
  archon:
    image: 'archon:latest'
    container_name: Archon
    ports:
      - '8501:8501'
      - '8100:8100'
2 Likes