-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathcompose.yaml
More file actions
40 lines (38 loc) · 1.09 KB
/
compose.yaml
File metadata and controls
40 lines (38 loc) · 1.09 KB
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
# ====================
# AscendSkip Docker Compose (Production)
# ====================
# Usage:
# 1. Copy .env.production to .env and edit values
# 2. Run: docker compose up -d
# ====================
services:
ascendskip:
image: ghcr.io/cxsmo-ai/ascendskip:latest
container_name: ascendskip
restart: unless-stopped
ports:
- "${PORT:-7070}:7070"
environment:
- NODE_ENV=production
- PORT=7070
- PUBLIC_URL=${PUBLIC_URL:-http://localhost:7070}
- SESSION_SECRET=${SESSION_SECRET}
- AIOSTREAMS_URL=${AIOSTREAMS_URL:-}
- AIOSTREAMS_URL_BACKUP=${AIOSTREAMS_URL_BACKUP:-}
- MONGODB_URI=${MONGODB_URI:-}
- ADMIN_PASSWORD=${ADMIN_PASSWORD:-}
- RPDB_KEY=${RPDB_KEY:-}
- OMDB_API_KEY=${OMDB_API_KEY:-}
volumes:
- ./data:/app/data
healthcheck:
test: ["CMD", "wget", "--no-verbose", "--tries=1", "--spider", "http://localhost:7070/api/session/stats"]
interval: 30s
timeout: 10s
retries: 3
start_period: 10s
networks:
- ascendskip-net
networks:
ascendskip-net:
driver: bridge