-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdocker-compose.yml
More file actions
28 lines (26 loc) · 664 Bytes
/
docker-compose.yml
File metadata and controls
28 lines (26 loc) · 664 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
version: '3.8'
services:
short-it:
image: ghcr.io/auravoid/short-it:latest
# build:
# context: .
# dockerfile: Dockerfile
ports:
- "8080:8080"
- "8090:8090"
environment:
#- RYBBIT_SITE_ID=YOUR_SITE_ID_HERE
#- RYBBIT_SITE_KEY=YOUR_API_KEY_HERE
#- RYBBIT_SITE_URL=https://your-rybbit-instance.example.com
- WEB_UI=true
- WEB_UI_PORT=8090
- APP_TOKEN=YOUR_TOKEN_HERE
- API_PORT=8080
- API_URL=http://localhost:8080
- DB_PATH=/data/short-it.db
- ALLOW_UNSAFE_URLS=false
volumes:
- short-it-data:/data
restart: unless-stopped
volumes:
short-it-data: