From 3f02911fe795b4029bccab0d06cbd991a65d9a7f Mon Sep 17 00:00:00 2001 From: ItsNik <106100177+Its4Nik@users.noreply.github.com> Date: Wed, 22 May 2024 00:50:26 +0200 Subject: [PATCH] Delete docker-compose.yml --- docker-compose.yml | 26 -------------------------- 1 file changed, 26 deletions(-) delete mode 100644 docker-compose.yml diff --git a/docker-compose.yml b/docker-compose.yml deleted file mode 100644 index 0b5773a..0000000 --- a/docker-compose.yml +++ /dev/null @@ -1,26 +0,0 @@ -version: '3' -services: - tianji: - image: moonrailgun/tianji - ports: - - "12345:12345" - environment: - DATABASE_URL: postgresql://tianji:tianji@postgres:5432/tianji - JWT_SECRET: replace-me-with-a-random-string - ALLOW_REGISTER: "false" - ALLOW_OPENAPI: "true" - depends_on: - - postgres - restart: always - postgres: - image: postgres:15.4-alpine - environment: - POSTGRES_DB: tianji - POSTGRES_USER: tianji - POSTGRES_PASSWORD: tianji - restart: always - healthcheck: - test: ["CMD-SHELL", "pg_isready -U $${POSTGRES_USER} -d $${POSTGRES_DB}"] - interval: 5s - timeout: 5s - retries: 5 \ No newline at end of file