From fa32e444f6e9277b98d83852428cd08d38b45f6f Mon Sep 17 00:00:00 2001 From: Struchkov Mark Date: Fri, 25 Mar 2022 10:18:46 +0300 Subject: [PATCH] =?UTF-8?q?=D0=9E=D0=B1=D0=BD=D0=BE=D0=B2=D0=BB=D0=B5?= =?UTF-8?q?=D0=BD=D0=B8=D0=B5=20=D0=B1=D0=B8=D0=B1=D0=BB=D0=B8=D0=BE=D1=82?= =?UTF-8?q?=D0=B5=D0=BA=D0=B8=20godfather=20=D0=B4=D0=BB=D1=8F=20=D0=B8?= =?UTF-8?q?=D1=81=D0=BF=D1=80=D0=B0=D0=B2=D0=BB=D0=B5=D0=BD=D0=B8=D1=8F=20?= =?UTF-8?q?=D0=B1=D0=B0=D0=B3=D0=BE=D0=B2?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- README.md | 0 docker-compose.yml | 20 ++++++++++++++++++++ pom.xml | 4 ++-- telegram-core/pom.xml | 4 ++-- telegram-core/telegram-core.iml | 8 -------- 5 files changed, 24 insertions(+), 12 deletions(-) create mode 100644 README.md create mode 100644 docker-compose.yml delete mode 100644 telegram-core/telegram-core.iml diff --git a/README.md b/README.md new file mode 100644 index 0000000..e69de29 diff --git a/docker-compose.yml b/docker-compose.yml new file mode 100644 index 0000000..81aa912 --- /dev/null +++ b/docker-compose.yml @@ -0,0 +1,20 @@ +postgres: + image: 192.168.235.157:8182/postgres:13.1-alpine + container_name: theater-postgres + hostname: postgres + restart: on-failure + networks: + - network + ports: + - 5433:5432 + volumes: + - ./volume/db/01-init.sh:/docker-entrypoint-initdb.d/01-init.sh + - ./volume/db/storage:/var/lib/postgresql/data:z + environment: + - POSTGRES_USER=${POSTGRES_USER} + - POSTGRES_PASSWORD=${POSTGRES_PASSWORD} + - APP_DB_USER=${DATASOURCE_USERNAME} + - APP_DB_PASS=${DATASOURCE_PASSWORD} + +volumes: + gitlab-notify: \ No newline at end of file diff --git a/pom.xml b/pom.xml index 5d55db1..22abf98 100644 --- a/pom.xml +++ b/pom.xml @@ -5,7 +5,7 @@ dev.struchkov.godfather telegram-bot - 0.0.2 + 0.0.3-SNAPSHOT pom @@ -33,7 +33,7 @@ UTF-8 UTF-8 - 0.0.2 + 0.0.3-SNAPSHOT 5.4.0.1 3.9.0 diff --git a/telegram-core/pom.xml b/telegram-core/pom.xml index c3fad5a..73a67d9 100644 --- a/telegram-core/pom.xml +++ b/telegram-core/pom.xml @@ -5,11 +5,11 @@ dev.struchkov.godfather telegram-bot - 0.0.2 + 0.0.3-SNAPSHOT telegram-core - 0.0.2 + 0.0.3-SNAPSHOT Telegram Core Allows you to create bots for Telegram diff --git a/telegram-core/telegram-core.iml b/telegram-core/telegram-core.iml deleted file mode 100644 index 4a4ce55..0000000 --- a/telegram-core/telegram-core.iml +++ /dev/null @@ -1,8 +0,0 @@ - - - - - - \ No newline at end of file