-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdokploy.yml
More file actions
44 lines (36 loc) · 804 Bytes
/
dokploy.yml
File metadata and controls
44 lines (36 loc) · 804 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
# Dokploy Configuration
# This file contains deployment settings for Dokploy
# Application settings
app:
name: "jobless-journal-frontend"
type: "docker"
# Build settings
build:
dockerfile: "Dockerfile"
context: "."
# Deployment settings
deploy:
port: 3000
healthcheck:
path: "/"
interval: 30
timeout: 10
retries: 3
# Environment variables (add your custom ones here)
env:
NODE_ENV: "production"
VITE_BACKEND_URL: "https://jobless-journal.yampi.eu/api"
# Resource limits
resources:
memory: "512M"
cpu: "0.5"
# Scaling
scale:
replicas: 1
# Domain configuration (update with your domain)
domains:
- name: "jobless.yampi.eu"
ssl: true
# Backup configuration (optional)
backup:
enabled: false