mirror of
https://github.com/umami-software/umami.git
synced 2026-02-18 11:35:37 +01:00
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>
This commit is contained in:
parent
5ecaf5587b
commit
ae74c4f64e
1 changed files with 1 additions and 0 deletions
|
|
@ -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…
Add table
Add a link
Reference in a new issue