From 63e82e911c40ed91225a9d2696197870f279a9a2 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Miroslav=20=C5=A0ediv=C3=BD?= Date: Thu, 11 Jun 2020 17:31:37 +0200 Subject: [PATCH] use latest in tags --- README.md | 2 +- docker-compose.yml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index d927933..97ab2d0 100644 --- a/README.md +++ b/README.md @@ -36,7 +36,7 @@ Please note, that this demo has very limited computing resources, strict rate li Container will run without any initial configuration needed using SQLite as database provider. For better performance consider using MySQL. ```sh -docker run -d -p 80:80 -v $PWD/data:/var/www/html/data m1k1o/blog +docker run -d -p 80:80 -v $PWD/data:/var/www/html/data m1k1o/blog:latest ``` You can set environment variables, prefixed with `BLOG_` and uppercase. They can be found in `config.ini`. diff --git a/docker-compose.yml b/docker-compose.yml index ed88440..94d80c1 100644 --- a/docker-compose.yml +++ b/docker-compose.yml @@ -2,7 +2,7 @@ version: "3" services: webserver: - image: m1k1o/blog + image: m1k1o/blog:latest container_name: blog_apache environment: TZ: Europe/Vienna