mirror of
https://github.com/offen/website.git
synced 2024-11-22 17:10:29 +01:00
12 lines
214 B
YAML
12 lines
214 B
YAML
|
server:
|
||
|
image: golang:1.12
|
||
|
working_dir: /server
|
||
|
volumes:
|
||
|
- ./server:/server
|
||
|
- $GOPATH/pkg/mod:/go/pkg/mod
|
||
|
environment:
|
||
|
- GOPATH=/go
|
||
|
ports:
|
||
|
- 8080:8080
|
||
|
command: go run cmd/server/main.go
|