mirror of
https://github.com/wahyd4/zendesk.git
synced 2026-08-08 21:02:44 +10:00
12 lines
210 B
YAML
12 lines
210 B
YAML
version: "3"
|
|
services:
|
|
app:
|
|
image: golang:1.13
|
|
working_dir: /app/zendesk
|
|
volumes:
|
|
- .:/app/zendesk
|
|
- go-libs:/go/pkg
|
|
command: ["sh", "-c", "go run main.go"]
|
|
volumes:
|
|
go-libs: {}
|