Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/sevichecc/docker-compose
Archive of my Docker Compose YAML templates
https://github.com/sevichecc/docker-compose
Last synced: 9 days ago
JSON representation
Archive of my Docker Compose YAML templates
- Host: GitHub
- URL: https://github.com/sevichecc/docker-compose
- Owner: Sevichecc
- License: gpl-3.0
- Created: 2023-01-19T13:04:09.000Z (almost 2 years ago)
- Default Branch: main
- Last Pushed: 2023-02-07T12:41:51.000Z (almost 2 years ago)
- Last Synced: 2024-10-08T11:05:58.349Z (about 1 month ago)
- Language: Shell
- Homepage:
- Size: 48.8 KB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
## without docker-compose.yml
### Owncast
```bash
sudo docker run -d -v /opt/owncast/data:/app/data -p 8080:8080 -p 1935:1935 -it gabekangas/owncast:latest --name owncast
```- [Use a container image - Owncast](https://owncast.online/quickstart/container/)
- [Owncast - Free and Open Source Livestreaming](https://owncast.online/)### PrivateBin
Location: `/opt/privatebin`
```bash
sudo docker run -d \
--name privatebin \
--restart="always" \
--read-only \
-p 8040:8080 \
-v /opt/privatebin/privatebin-data:/srv/data privatebin/nginx-fpm-alpine
```[privatebin/nginx-fpm-alpine - Docker Image | Docker Hub](https://hub.docker.com/r/privatebin/nginx-fpm-alpine/)
### LittleLink
```bash
docker run --detach \
--name littlelink-custom \
--hostname littlelink-custom \
--env HTTP_SERVER_NAME="yourwebsite.org" \
--env HTTPS_SERVER_NAME=yourwebsite.org" \
--env SERVER_ADMIN="[email protected]" \
--env TZ="Europe/Berlin" \
--env PHP_MEMORY_LIMIT="512M" \
--env UPLOAD_MAX_FILESIZE="50M" \
--publish 80:80 \
--publish 447:443 \
--restart unless-stopped \
--mount source=llc,target=/htdocs \
julianprieber/littlelink-custom
```[LittleLink Custom - A self-hosted open-source Linktree alternative](https://littlelink-custom.com/)
## n8n
```bash
docker run -it --rm --name n8n -p 5678:5678 -v ~/.n8n:/home/node/.n8n n8nio/n8n
```