go-simple-app-devopsified/docker-compose.yaml
Jagrit Thapar 974029a3db 1️⃣ STEP 1: Containerize Application
-  Image Size: ~10MB
- Created Dockerfile [Multi-stage, Scrath]
- Create docker-compose file for ease of use [cmd: docker-compose up -d]
2024-09-06 18:10:53 +05:30

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