-
-
Notifications
You must be signed in to change notification settings - Fork 22
/
Copy pathdocker-compose.yaml
38 lines (36 loc) · 894 Bytes
/
docker-compose.yaml
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
29
30
31
32
33
34
35
36
37
38
networks:
discount-bandit:
driver: bridge
services:
discount-bandit:
image: cybrarist/discount-bandit:latest
# build:
# context: .
ports:
- 8080:80
networks:
- discount-bandit
volumes:
- ./database/database.sqlite:/app/database/database.sqlite
- ./.env:/app/.env
- ./logs:/logs
environment:
DB_CONNECTION: sqlite
NTFY_CHANNEL_ID: ""
NTFY_BASE_URL: "https://ntfy.sh"
TELEGRAM_BOT_TOKEN: ""
TELEGRAM_CHANNEL_ID: ""
DEFAULT_USER: "test"
DEFAULT_EMAIL: "[email protected]"
DEFAULT_PASSWORD: "thisismypassword"
APPRISE_URL: ""
APP_TIMEZONE: UTC
RSS_FEED: 1
TOP_NAVIGATION: 0
DISABLE_TOP_BAR: 0
BREADCRUMBS: 1
SPA: 1
DISABLE_AUTH: 1
THEME_COLOR: Stone
APP_URL: "http://localhost:8080"
ASSET_URL: "http://localhost:8080"