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:
- Run the python script building the docker container
- Stop the newly created archon docker container
- “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'