Added upload speedtest

- Updated CORS to apply for all API endpoints
- Added database docker compose
This commit is contained in:
Max W
2024-02-14 23:14:04 +01:00
parent bfcce1ec3b
commit ab16fd1c5d
4 changed files with 93 additions and 1 deletions

13
db/docker-compose.yml Normal file
View File

@ -0,0 +1,13 @@
version: '3.8'
services:
rethinkdb:
image: rethinkdb:latest
restart: unless-stopped
volumes:
- rethinkdb_data:/data
ports:
- "28015:28015" # Client driver port
- "8080:8080" # Admin UI port
volumes:
rethinkdb_data: