-
Where to get help: the Docker Community Forums, the Docker Community Slack, or Stack Overflow
-
Where to file issues: https://github.com/wizardstech/docker/issues
-
Maintained by: Wizards Technologies
-
Source of this description: gofresh directory (history)
-
Supported Docker versions: the latest release (down to 1.6 on a best-effort basis)
The purpose of gofresh is to provide a container which include the fresh command line tool to improve development efficiency with golang.
You should not use this in production !
Inside your project directory you must have theses two files
.env
...
WORKDIR=github.com/you_username/your_project
docker-compose.yml
version: '3'
services:
app:
image: wizardstech/gofresh:1.12-alpine
working_dir: /go/src/${WORKDIR}
environment:
WORKDIR: $WORKDIR
volumes:
- .:/go/src/${WORKDIR}
Then, simply run docker-compose up -d
, that's it !