Docker image for running the golang CompileDaemon against code mounted in a volume without needing to build any extra images.
Version: 1.2.1
Version: 1.15.7-alpine
docker build -t=emcquill/compiledaemon:latest .
docker run --rm -w="/app" --mount type=bind,source="$(pwd)",target=/app emcquill/compiledaemon:latest CompileDaemon --build="go build -o binary" --command="./binary"
compiledaemon:
image: emcquill/compiledaemon:latest
working_dir: /app
volumes:
- ./:/app
ports:
- 8088:8088
command: CompileDaemon --build="go build -o binary" --command="./binary"