From ae74c4f64e43475207e6d17f849010d92340080c Mon Sep 17 00:00:00 2001 From: Kipras Melnikovas Date: Tue, 18 May 2021 02:21:05 +0300 Subject: [PATCH] feat: allow building image from docker compose I don't know if this might have other implications (like whether or not it would default to pulling or building a newer image once you want to update), but I found this useful when e.g. implementing a translation and the `yarn dev` thingie just didn't work, thus building the docker image right from `docker-compose build` or just `docker-compose up --build`. Signed-off-by: Kipras Melnikovas --- docker-compose.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/docker-compose.yml b/docker-compose.yml index 06f8ab1d..a4c016dd 100644 --- a/docker-compose.yml +++ b/docker-compose.yml @@ -3,6 +3,7 @@ version: '3' services: umami: image: ghcr.io/mikecao/umami:postgresql-latest + build: . ports: - "3000:3000" environment: