feat: added template + linting
This commit is contained in:
parent
e487af8136
commit
dc5a9d3653
17 changed files with 79 additions and 53 deletions
|
@ -1,4 +1,4 @@
|
|||
version: "3"
|
||||
---
|
||||
services:
|
||||
### Downloader - Usenet
|
||||
sabnzbd:
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
version: "3"
|
||||
---
|
||||
services:
|
||||
### Downloader - Usenet
|
||||
sabnzbd:
|
||||
|
@ -51,7 +51,7 @@ services:
|
|||
restart: unless-stopped
|
||||
|
||||
### Content Request Management
|
||||
#jellyseerr:
|
||||
# jellyseerr:
|
||||
# image: fallenbagel/jellyseerr:latest
|
||||
# container_name: jellyseerr
|
||||
# environment:
|
||||
|
@ -63,4 +63,3 @@ services:
|
|||
# ports:
|
||||
# - 5055:5055
|
||||
# restart: unless-stopped
|
||||
|
||||
|
|
|
@ -1,3 +1,4 @@
|
|||
---
|
||||
# Copyright 2023 The Forgejo Authors.
|
||||
# SPDX-License-Identifier: MIT
|
||||
|
||||
|
@ -12,15 +13,12 @@
|
|||
# as a shared secret.
|
||||
#
|
||||
# Replace {ROOT_PASSWORD} with a secure password
|
||||
version: "3"
|
||||
|
||||
services:
|
||||
|
||||
# https://code.forgejo.org/forgejo/runner/src/branch/main/examples/docker-compose
|
||||
docker-in-docker:
|
||||
image: docker:dind
|
||||
privileged: true
|
||||
command: [ "dockerd", "-H", "tcp://0.0.0.0:2375", "--tls=false" ]
|
||||
command: ["dockerd", "-H", "tcp://0.0.0.0:2375", "--tls=false"]
|
||||
|
||||
forgejo:
|
||||
image: codeberg.org/forgejo/forgejo:1.21
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
version: '3.8'
|
||||
---
|
||||
services:
|
||||
homeassistant:
|
||||
image: ghcr.io/home-assistant/home-assistant:stable
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
version: "3.6"
|
||||
---
|
||||
services:
|
||||
homepage:
|
||||
image: ghcr.io/gethomepage/homepage:latest
|
||||
|
|
|
@ -1,6 +1,4 @@
|
|||
---
|
||||
version: '3.7'
|
||||
|
||||
services:
|
||||
minio:
|
||||
image: quay.io/minio/minio
|
||||
|
|
|
@ -1,8 +1,29 @@
|
|||
# ntfy
|
||||
|
||||
After container startup place server.yml into volumes/ntfy:
|
||||
```
|
||||
mv server.yml voluems/ntfy
|
||||
- [ntfy](#ntfy)
|
||||
- [Directory structure](#directory-structure)
|
||||
- [Config](#config)
|
||||
|
||||
docker compose restart
|
||||
## Directory structure
|
||||
```
|
||||
/opt/docker/ntfy
|
||||
.
|
||||
├── docker-compose.yml
|
||||
└── volumes
|
||||
├── cache
|
||||
└── ntfy
|
||||
└── server.yml
|
||||
```
|
||||
|
||||
|
||||
## Config
|
||||
```
|
||||
# Edit ntfy config
|
||||
vi server.yml
|
||||
|
||||
# Move file into ntfy directory
|
||||
mv server.yml volumes/ntfy
|
||||
|
||||
# Start ntfy container
|
||||
docker compose up -d
|
||||
```
|
||||
|
|
|
@ -1,7 +1,7 @@
|
|||
---
|
||||
services:
|
||||
|
||||
# https://docs.ntfy.sh/install/#docker
|
||||
ntfy:
|
||||
# https://docs.ntfy.sh/install/#docker
|
||||
image: binwiederhier/ntfy
|
||||
container_name: ntfy
|
||||
command:
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
version: "3.4"
|
||||
---
|
||||
services:
|
||||
broker:
|
||||
image: redis:6.0
|
||||
|
|
|
@ -28,9 +28,9 @@ services:
|
|||
- ./etc-pihole/:/etc/pihole/
|
||||
- ./etc-dnsmasq.d/:/etc/dnsmasq.d/
|
||||
# You'll need this, if you are using a self-created network
|
||||
#- ./resolv.conf:/etc/resolv.conf
|
||||
# - ./resolv.conf:/etc/resolv.conf
|
||||
# Recommended but not required (DHCP needs NET_ADMIN)
|
||||
# https://github.com/pi-hole/docker-pi-hole#note-on-capabilities
|
||||
#cap_add:
|
||||
#- NET_ADMIN
|
||||
# cap_add:
|
||||
# - NET_ADMIN
|
||||
restart: unless-stopped
|
|
@ -1,6 +1,5 @@
|
|||
version: '3.7'
|
||||
---
|
||||
services:
|
||||
|
||||
# https://github.com/librespeed/speedtest/blob/master/doc_docker.md
|
||||
speedtest:
|
||||
image: ghcr.io/librespeed/speedtest:latest
|
||||
|
@ -9,13 +8,13 @@ services:
|
|||
MODE: standalone
|
||||
TITLE: "LibreSpeed"
|
||||
TELEMETRY: "false"
|
||||
#ENABLE_ID_OBFUSCATION: "false"
|
||||
#REDACT_IP_ADDRESSES: "false"
|
||||
#PASSWORD:
|
||||
#EMAIL:
|
||||
#DISABLE_IPINFO: "false"
|
||||
#DISTANCE: "km"
|
||||
#WEBPORT: 80
|
||||
# ENABLE_ID_OBFUSCATION: "false"
|
||||
# REDACT_IP_ADDRESSES: "false"
|
||||
# PASSWORD:
|
||||
# EMAIL:
|
||||
# DISABLE_IPINFO: "false"
|
||||
# DISTANCE: "km"
|
||||
# WEBPORT: 80
|
||||
ports:
|
||||
- "127.0.0.1:8082:80" # webport mapping (host:container)
|
||||
restart: unless-stopped
|
|
@ -1,6 +1,5 @@
|
|||
version: "3"
|
||||
---
|
||||
services:
|
||||
|
||||
# https://docs.tandoor.dev/install/docker/
|
||||
tandoor:
|
||||
image: vabene1111/recipes
|
||||
|
|
12
template/docker-compose.yml
Normal file
12
template/docker-compose.yml
Normal file
|
@ -0,0 +1,12 @@
|
|||
---
|
||||
services:
|
||||
service_name:
|
||||
image:
|
||||
container_name:
|
||||
environment:
|
||||
env_file:
|
||||
command:
|
||||
ports:
|
||||
volumes:
|
||||
depends_on:
|
||||
restart: unless-stopped
|
|
@ -1,4 +1,4 @@
|
|||
version: '3.3'
|
||||
---
|
||||
services:
|
||||
uptime-kuma:
|
||||
image: louislam/uptime-kuma:latest
|
||||
|
@ -7,4 +7,4 @@ services:
|
|||
- ./volumes/data:/app/data
|
||||
ports:
|
||||
- 127.0.0.1:13001:3001
|
||||
restart: always
|
||||
restart: unless-stopped
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
version: '3'
|
||||
---
|
||||
services:
|
||||
vaultwarden:
|
||||
image: vaultwarden/server:latest
|
||||
|
@ -16,5 +16,5 @@ services:
|
|||
ICON_CACHE_TTL: 0
|
||||
ICON_SERVICE: 'internal'
|
||||
DISABLE_ICON_DOWNLOAD: 'true'
|
||||
#LOG_LEVEL: 'debug'
|
||||
# LOG_LEVEL: 'debug'
|
||||
restart: unless-stopped
|
Loading…
Add table
Add a link
Reference in a new issue