emanuelegori / Readeck
0 喜欢
0 派生
1 文件
最后活跃于
1 | services: |
2 | readeck: |
3 | image: codeberg.org/readeck/readeck:latest |
4 | container_name: readeck |
5 | ports: |
6 | - 8000:8000 |
7 | environment: |
8 | # Defines the application log level. Can be error, warn, info, debug. |
9 | - READECK_LOG_LEVEL=info |
10 | # The IP address on which Readeck listens. |
emanuelegori / GeoIp Update
0 喜欢
0 派生
1 文件
最后活跃于
1 | services: |
2 | geoipupdate: |
3 | container_name: geoipupdate |
4 | image: ghcr.io/maxmind/geoipupdate |
5 | restart: unless-stopped |
6 | environment: |
7 | - GEOIPUPDATE_ACCOUNT_ID=XXXXXX |
8 | - GEOIPUPDATE_LICENSE_KEY=XXXXXXXXXXXXXXXX |
9 | - 'GEOIPUPDATE_EDITION_IDS=GeoLite2-Country' |
10 | - GEOIPUPDATE_FREQUENCY=72 |
emanuelegori / Nextcloud
0 喜欢
0 派生
1 文件
最后活跃于
1 | services: |
2 | |
3 | caddy: |
4 | image: lucaslorentz/caddy-docker-proxy:ci-alpine |
5 | container_name: reverse-proxy |
6 | ports: |
7 | - 80:80 |
8 | - 443:443 |
9 | environment: |
10 | - CADDY_INGRESS_NETWORKS=nextcloud_network |
emanuelegori / Reubah
0 喜欢
0 派生
1 文件
最后活跃于
1 | services: |
2 | reubah: |
3 | container_name: reubah |
4 | image: ghcr.io/dendianugerah/reubah:latest |
5 | ports: ## commenta se utilizzi un reverse proxy |
6 | - 8081:8081 ## anche questa riga |
7 | security_opt: |
8 | - no-new-privileges:true |
9 | environment: |
10 | PORT: 8081 |
emanuelegori / Vaultwarden
0 喜欢
0 派生
1 文件
最后活跃于
Vaultwarden is an unofficial port of Bitwarden server compatible with the official Bitwarden clients and is less resource-heavy than Bitwarden
1 | services: |
2 | vaultwarden: |
3 | image: vaultwarden/server:latest |
4 | container_name: vaultwarden |
5 | restart: unless-stopped |
6 | environment: |
7 | WEBSOCKET_ENABLED: true |
8 | ADMIN_TOKEN: your-admin-authentication-token ## Aggiungi 32 caratteri casuali, sia lettere che numeri. |
9 | DOMAIN: https://vault.emanuelegori.uno ## https://tuo_dominio |
10 | SIGNUPS_ALLOWED: false ## true se vuoi creare un utente senza invito |
emanuelegori / RSSHub
0 喜欢
0 派生
1 文件
最后活跃于
RSSHub è un aggregatore di feed RSS open source, estensibile e facile da usare, capace di generare feed RSS da quasi qualsiasi fonte
1 | services: |
2 | rsshub: |
3 | image: diygod/rsshub |
4 | restart: always |
5 | ports: |
6 | - 1200:1200 |
7 | environment: |
8 | NODE_ENV: production |
9 | CACHE_TYPE: redis |
10 | REDIS_URL: "redis://redis:6379/" |
1 | services: |
2 | uptimekuma: |
3 | image: louislam/uptime-kuma:1 |
4 | container_name: Uptime-Kuma |
5 | hostname: uptimekuma |
6 | mem_limit: 1g |
7 | cpu_shares: 1024 |
8 | ports: |
9 | # <Host Port>:<Container Port> |
10 | - 3001:3001 |
emanuelegori / Diun
0 喜欢
0 派生
1 文件
最后活跃于
1 | services: |
2 | diun: |
3 | image: crazymax/diun:latest |
4 | container_name: diun |
5 | command: serve |
6 | security_opt: |
7 | - no-new-privileges:true |
8 | volumes: |
9 | - ./data:/data |
10 | - /var/run/docker.sock:/var/run/docker.sock:ro |
emanuelegori / PairDrop
0 喜欢
0 派生
1 文件
最后活跃于
1 | services: |
2 | pairdrop: |
3 | image: lscr.io/linuxserver/pairdrop:latest |
4 | container_name: pairdrop |
5 | environment: |
6 | - PUID=1000 |
7 | - PGID=1000 |
8 | - TZ=Europe/Rome |
9 | - WS_FALLBACK=false |
10 | - RATE_LIMIT=false |
上一页
下一页