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:
|
services:
|
||||||
### Downloader - Usenet
|
### Downloader - Usenet
|
||||||
sabnzbd:
|
sabnzbd:
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
version: "3"
|
---
|
||||||
services:
|
services:
|
||||||
### Downloader - Usenet
|
### Downloader - Usenet
|
||||||
sabnzbd:
|
sabnzbd:
|
||||||
|
@ -63,4 +63,3 @@ services:
|
||||||
# ports:
|
# ports:
|
||||||
# - 5055:5055
|
# - 5055:5055
|
||||||
# restart: unless-stopped
|
# restart: unless-stopped
|
||||||
|
|
||||||
|
|
|
@ -1,3 +1,4 @@
|
||||||
|
---
|
||||||
# Copyright 2023 The Forgejo Authors.
|
# Copyright 2023 The Forgejo Authors.
|
||||||
# SPDX-License-Identifier: MIT
|
# SPDX-License-Identifier: MIT
|
||||||
|
|
||||||
|
@ -12,10 +13,7 @@
|
||||||
# as a shared secret.
|
# as a shared secret.
|
||||||
#
|
#
|
||||||
# Replace {ROOT_PASSWORD} with a secure password
|
# Replace {ROOT_PASSWORD} with a secure password
|
||||||
version: "3"
|
|
||||||
|
|
||||||
services:
|
services:
|
||||||
|
|
||||||
# https://code.forgejo.org/forgejo/runner/src/branch/main/examples/docker-compose
|
# https://code.forgejo.org/forgejo/runner/src/branch/main/examples/docker-compose
|
||||||
docker-in-docker:
|
docker-in-docker:
|
||||||
image: docker:dind
|
image: docker:dind
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
version: '3.8'
|
---
|
||||||
services:
|
services:
|
||||||
homeassistant:
|
homeassistant:
|
||||||
image: ghcr.io/home-assistant/home-assistant:stable
|
image: ghcr.io/home-assistant/home-assistant:stable
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
version: "3.6"
|
---
|
||||||
services:
|
services:
|
||||||
homepage:
|
homepage:
|
||||||
image: ghcr.io/gethomepage/homepage:latest
|
image: ghcr.io/gethomepage/homepage:latest
|
||||||
|
|
|
@ -1,6 +1,4 @@
|
||||||
---
|
---
|
||||||
version: '3.7'
|
|
||||||
|
|
||||||
services:
|
services:
|
||||||
minio:
|
minio:
|
||||||
image: quay.io/minio/minio
|
image: quay.io/minio/minio
|
||||||
|
|
|
@ -1,8 +1,29 @@
|
||||||
# ntfy
|
# ntfy
|
||||||
|
|
||||||
After container startup place server.yml into volumes/ntfy:
|
- [ntfy](#ntfy)
|
||||||
```
|
- [Directory structure](#directory-structure)
|
||||||
mv server.yml voluems/ntfy
|
- [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:
|
services:
|
||||||
|
|
||||||
# https://docs.ntfy.sh/install/#docker
|
|
||||||
ntfy:
|
ntfy:
|
||||||
|
# https://docs.ntfy.sh/install/#docker
|
||||||
image: binwiederhier/ntfy
|
image: binwiederhier/ntfy
|
||||||
container_name: ntfy
|
container_name: ntfy
|
||||||
command:
|
command:
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
version: "3.4"
|
---
|
||||||
services:
|
services:
|
||||||
broker:
|
broker:
|
||||||
image: redis:6.0
|
image: redis:6.0
|
||||||
|
|
|
@ -1,6 +1,5 @@
|
||||||
version: '3.7'
|
---
|
||||||
services:
|
services:
|
||||||
|
|
||||||
# https://github.com/librespeed/speedtest/blob/master/doc_docker.md
|
# https://github.com/librespeed/speedtest/blob/master/doc_docker.md
|
||||||
speedtest:
|
speedtest:
|
||||||
image: ghcr.io/librespeed/speedtest:latest
|
image: ghcr.io/librespeed/speedtest:latest
|
||||||
|
|
|
@ -1,6 +1,5 @@
|
||||||
version: "3"
|
---
|
||||||
services:
|
services:
|
||||||
|
|
||||||
# https://docs.tandoor.dev/install/docker/
|
# https://docs.tandoor.dev/install/docker/
|
||||||
tandoor:
|
tandoor:
|
||||||
image: vabene1111/recipes
|
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:
|
services:
|
||||||
uptime-kuma:
|
uptime-kuma:
|
||||||
image: louislam/uptime-kuma:latest
|
image: louislam/uptime-kuma:latest
|
||||||
|
@ -7,4 +7,4 @@ services:
|
||||||
- ./volumes/data:/app/data
|
- ./volumes/data:/app/data
|
||||||
ports:
|
ports:
|
||||||
- 127.0.0.1:13001:3001
|
- 127.0.0.1:13001:3001
|
||||||
restart: always
|
restart: unless-stopped
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
version: '3'
|
---
|
||||||
services:
|
services:
|
||||||
vaultwarden:
|
vaultwarden:
|
||||||
image: vaultwarden/server:latest
|
image: vaultwarden/server:latest
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue