-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdocker-compose.yml
More file actions
23 lines (23 loc) · 820 Bytes
/
docker-compose.yml
File metadata and controls
23 lines (23 loc) · 820 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
version: '2'
services:
node:
image: "ghcr.io/kabuspl/oceny-backend:latest"
environment:
DISCORD_WEBHOOK_NORMAL_GRADES: "https://discord.com/api/webhooks/123/abc"
DISCORD_WEBHOOK_SEMESTRAL_GRADES: "https://discord.com/api/webhooks/123/abc"
DISCORD_WEBHOOK_ERRORS: "https://discord.com/api/webhooks/123/abc"
UONET_USERNAME: "student@school.com"
UONET_PASSWORD: "P@ssw0rd"
UONET_SYMBOL: "city"
UPDATE_RATE_MS: 300000
LOG_LEVEL: 2
IMPORT_DATASTORE: "false"
volumes:
- datastore:/home/node/app/datastore
- logs:/home/node/app/logs
- ./datastore_import:/home/node/app/datastore_import
ports:
- "4080"
volumes:
datastore:
logs: