# Onetagger-Docker Dockerfile & composer to build onetagger in a container ## Building ```bash docker build -t onetagger-docker/linux-x64:dev . ``` ## Running & building ```bash docker compose up ``` Build output is written to `./target/release/onetagger` on the host or `/usr/local/app/onetagger/target/release/onetagger` on the container ## Running without building ```bash docker run --rm -it --entrypoint /usr/bin/bash -v ./target:/usr/local/app/onetagger/target/ onetagger-docker/linux-x64:dev # you can still start the build by running './build.sh' ``` ## Troubleshooting - If the files are not written to the host after / during the build, try deleting `./build`