Skip to content

Commit

Permalink
Add doc directory to .dockerignore and update image paths in README.md
Browse files Browse the repository at this point in the history
  • Loading branch information
jarvis2f committed Mar 31, 2024
1 parent f4c2c58 commit fdb025a
Show file tree
Hide file tree
Showing 6 changed files with 14 additions and 3 deletions.
3 changes: 2 additions & 1 deletion .dockerignore
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,6 @@
# debug
npm-debug.log*
yarn-debug.log*
yarn-error.log*
.pnpm-debug.log*

# local env files
Expand All @@ -41,3 +40,5 @@ npm-debug.log
README.md
.git
.run

/doc
14 changes: 12 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -18,10 +18,10 @@ Vortex
</p>

<p align="center">
<img src="https://raw.githubusercontent.com/jarvis2f/vortex/main/public/dashboard.png" alt="Vortex Dashboard" width="70%"/>
<img src="https://raw.githubusercontent.com/jarvis2f/vortex/main/doc/dashboard.png" alt="Vortex Dashboard" width="90%"/>
</p>
<p align="center">
<img src="https://raw.githubusercontent.com/jarvis2f/vortex/main/public/server.png" alt="Vortex Umami" width="70%"/>
<img src="https://raw.githubusercontent.com/jarvis2f/vortex/main/doc/server.png" alt="Vortex Umami" width="90%"/>
</p>

# Installation
Expand All @@ -44,6 +44,16 @@ docker-compose up
docker-compose -f docker-compose.umami.yml up
```

### Backup and Restore PostgreSQL

```bash
docker exec -t vortex-postgres pg_dump -U postgres --data-only vortex > dump_`date +%d-%m-%Y"_"%H_%M_%S`.sql
```

```bash
cat dump.sql | docker exec -i vortex_postgres psql -U postgres -d vortex
```

## Vercel

[![Deploy with Vercel](https://vercel.com/button)](https://vercel.com/new/clone?repository-url=https%3A%2F%2Fgithub.com%2Fjarvis2f%2Fvortex)
Expand Down
Binary file added doc/dashboard.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added doc/server.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file removed public/dashboard.png
Binary file not shown.
Binary file removed public/server.png
Binary file not shown.

0 comments on commit fdb025a

Please sign in to comment.