Skip to content

Latest commit

 

History

History
17 lines (12 loc) · 525 Bytes

README.md

File metadata and controls

17 lines (12 loc) · 525 Bytes

go-docker-autobuild

Docker image to rebuild and run automatically go program every time a file is changed.

See https://github.com/gravityblast/fresh for more details on customizing fresh behaviour, the command line tool used to rebuild and run go program.

Exemple usage with docker-compose :

services:
    app:
        image: softinnov/go-docker-autobuild
        volumes:
            - ./:/src/

That's it : every time you add, change or remove a file, it rebuild and restart your go application.