This commit is contained in:
2025-12-04 07:43:14 +01:00
parent edd87af88b
commit 72d123705a
2 changed files with 35 additions and 3 deletions

6
tp1.md
View File

@@ -31,12 +31,12 @@ cd sql_bank
```
```shell
docker network create pgsql_net
docker network create tp_net
```
```shell
docker run --detach --name pgsql ^
--network pgsql_net ^
--network tp_net ^
-p "5432:5432" ^
-e "POSTGRES_INITDB_ARGS=--locale-provider=icu --icu-locale=fr-FR" ^
-e "POSTGRES_PASSWORD=geii2025" ^
@@ -56,7 +56,7 @@ docker pull grafana/grafana:12.1
```shell
docker run --detach --name grafana ^
--network pgsql_net ^
--network tp_net ^
-p "3000:3000" ^
-e "GF_SECURITY_ADMIN_USER=admin" ^
-e "GF_SECURITY_ADMIN_PASSWORD=geii2025" ^