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