Upload docker-compose.yml with huggingface_hub
Browse files- docker-compose.yml +16 -0
docker-compose.yml
ADDED
|
@@ -0,0 +1,16 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
services:
|
| 2 |
+
bentopdf:
|
| 3 |
+
# GitHub Container Registry (Recommended)
|
| 4 |
+
# simple mode - ghcr.io/alam00000/bentopdf-simple:latest
|
| 5 |
+
# default mode - ghcr.io/alam00000/bentopdf:latest
|
| 6 |
+
# Docker Hub (Alternative)
|
| 7 |
+
# simple mode - bentopdfteam/bentopdf-simple:latest
|
| 8 |
+
# default mode - bentopdfteam/bentopdf:latest
|
| 9 |
+
image: ghcr.io/alam00000/bentopdf-simple:latest
|
| 10 |
+
container_name: bentopdf
|
| 11 |
+
restart: unless-stopped
|
| 12 |
+
ports:
|
| 13 |
+
- '8080:8080'
|
| 14 |
+
# For IPv4-only environments
|
| 15 |
+
#environment:
|
| 16 |
+
# - DISABLE_IPV6=true
|