13 lines
207 B
YAML
13 lines
207 B
YAML
|
version: '3.8'
|
||
|
|
||
|
services:
|
||
|
go-app:
|
||
|
build:
|
||
|
context: .
|
||
|
dockerfile: Dockerfile
|
||
|
ports:
|
||
|
- "8080:8080"
|
||
|
volumes:
|
||
|
- ./static:/app/static
|
||
|
# environment:
|
||
|
# - ENV=production
|