-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdokploy.yml
More file actions
45 lines (39 loc) · 974 Bytes
/
dokploy.yml
File metadata and controls
45 lines (39 loc) · 974 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
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
# yaml-language-server: $schema=https://raw.githubusercontent.com/pythoninthegrass/icarus/main/schemas/dokploy.schema.json
project:
name: meetup-bot
description: |
Meetup Pro API Slack bot with FastAPI
env_targets: [web]
deploy_order:
- [web]
github:
owner: pythoninthegrass
repository: meetup_bot
branch: main
environments:
prod:
github:
branch: main
apps:
web:
domain:
host: meetupbot.exographicskip.com
port: 3100
https: true
certificateType: letsencrypt
apps:
- name: web
source: github
volumes:
- source: db_data
target: /data
type: volume
schedules:
- name: weekday-run
cronExpression: "0 9 * * 1,3,5"
command: >-
python -c "import httpx;
httpx.post('http://localhost:3100/api/slack',
params={'channel_name': 'okc-metro'})"
shellType: bash
timezone: America/Chicago