diff --git a/docmost/.env.example b/docmost/.env.example deleted file mode 100644 index 826133f..0000000 --- a/docmost/.env.example +++ /dev/null @@ -1,7 +0,0 @@ -# openssl rand -base64 18 -POSTGRES_PASSWORD= -POSTGRES_URL=postgresql://docmost:password@db:5432/docmost?schema=public - -# Application Configuration -# openssl rand -base64 33 -APP_SECRET= \ No newline at end of file diff --git a/docmost/compose.yaml b/docmost/compose.yaml deleted file mode 100644 index 3ba9421..0000000 --- a/docmost/compose.yaml +++ /dev/null @@ -1,35 +0,0 @@ -services: - docmost: - image: docmost/docmost:latest - depends_on: - - db - - redis - environment: - APP_URL: http://localhost:3000 - APP_SECRET: ${APP_SECRET} - DATABASE_URL: ${POSTGRES_URL} - REDIS_URL: redis://redis:6379 - ports: - - 9380:3000 - restart: unless-stopped - volumes: - - docmost:/app/data/storage - db: - image: postgres:16-alpine - environment: - POSTGRES_DB: docmost - POSTGRES_USER: docmost - POSTGRES_PASSWORD: ${POSTGRES_PASSWORD} - restart: unless-stopped - volumes: - - db_data:/var/lib/postgresql/data - redis: - image: redis:7.2-alpine - restart: unless-stopped - volumes: - - redis_data:/data -volumes: - docmost: null - db_data: null - redis_data: null -networks: {}