update docker-compose to build API service locally
All checks were successful
Build & Publish Docker Image / build-and-push (push) Successful in 44s

Switch from using a pre-built remote image to building the API service from the local Dockerfile.
This commit is contained in:
Flavio Fois
2026-03-23 21:44:01 +01:00
parent 576ce0b1b5
commit 69b3a917d3

View File

@@ -1,6 +1,7 @@
services:
api:
image: git.lyzcoote.cloud/emly/api-golang:latest
build:
dockerfile: .
restart: unless-stopped
ports:
- "${PORT:-8080}:8080"