forked from podly-pure-podcasts/podly_pure_podcasts
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcompose.yml
More file actions
32 lines (31 loc) · 790 Bytes
/
Copy pathcompose.yml
File metadata and controls
32 lines (31 loc) · 790 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
services:
podly:
container_name: podly-pure-podcasts
ports:
- "5001:5001"
image: ghcr.io/${REPO_OWNER:-jdrbc}/podly-pure-podcasts:${BRANCH:-main-latest}
volumes:
- ./src/instance:/app/src/instance
env_file:
- ./.env.local
environment:
- PUID=${PUID:-1000}
- PGID=${PGID:-1000}
- CUDA_VISIBLE_DEVICES=${CUDA_VISIBLE_DEVICES:--1}
- SERVER_THREADS=${SERVER_THREADS:-1}
restart: unless-stopped
healthcheck:
test:
[
"CMD",
"python3",
"-c",
"import urllib.request; urllib.request.urlopen('http://127.0.0.1:5001/')",
]
interval: 30s
timeout: 10s
retries: 3
start_period: 10s
networks:
default:
name: podly-pure-podcasts-network