Initial commit

This commit is contained in:
2025-11-27 08:51:21 +01:00
commit d0f221e8df
3 changed files with 7456 additions and 0 deletions

13
README.md Normal file
View File

@@ -0,0 +1,13 @@
# Bank
```shell
docker run --detach --name pgsql \
--network pgsql_net \
-p "5432:5432" \
-e "POSTGRES_INITDB_ARGS=--locale-provider=icu --icu-locale=fr-FR" \
-e "POSTGRES_PASSWORD=geii2025" \
-e "POSTGRES_USER=iut" \
-v pgsql_data:/var/lib/postgresql \
-v "./:/docker-entrypoint-initdb.d" \
iut/pgsql:2025-13
```