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 <kipras@kipras.org>pull/667/head
parent
5ecaf5587b
commit
ae74c4f64e
|
@ -3,6 +3,7 @@ version: '3'
|
||||||
services:
|
services:
|
||||||
umami:
|
umami:
|
||||||
image: ghcr.io/mikecao/umami:postgresql-latest
|
image: ghcr.io/mikecao/umami:postgresql-latest
|
||||||
|
build: .
|
||||||
ports:
|
ports:
|
||||||
- "3000:3000"
|
- "3000:3000"
|
||||||
environment:
|
environment:
|
||||||
|
|
Loading…
Reference in New Issue