mirror of
https://github.com/offen/website.git
synced 2024-11-22 09:00:28 +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
|