-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
3 changed files
with
108 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,33 @@ | ||
|
||
|
||
#https://git.sr.ht/~mediagoblin/mediagoblin | ||
|
||
#https://mediagoblin.org/ | ||
|
||
|
||
# docker run \ | ||
# --tty \ | ||
# --detach \ | ||
# --publish 8080:6543 \ | ||
# --name mediagoblin \ | ||
# mtlynch/mediagoblin | ||
|
||
|
||
version: '3.8' | ||
services: | ||
mediagoblin: | ||
image: mtlynch/mediagoblin | ||
container_name: mediagoblin | ||
tty: true | ||
ports: | ||
- "8080:6543" | ||
restart: unless-stopped | ||
|
||
#admin/admin | ||
|
||
#https://wiki.mediagoblin.org/EasyDeployment | ||
#https://docs.mediagoblin.org/en/master/siteadmin/deploying.html | ||
|
||
#https://github.com/mtlynch/mediagoblin-docker | ||
|
||
# docker build --tag mediagoblin . |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,72 @@ | ||
# #https://github.com/Chocobozzz/PeerTube | ||
# #https://raw.githubusercontent.com/Chocobozzz/PeerTube/develop/support/docker/production/docker-compose.yml | ||
|
||
# # DOMAIN=mydomain.com | ||
# # [email protected] | ||
# # DB_PASSWORD=choose-a-strong-password | ||
# # DB_ROOT_PASSWORD=another-strong-password | ||
# # [email protected] | ||
# # PEERTUBE_SECRET='your-generated-secret' #openssl rand -hex 32 | ||
# # DATABASE_HOSTNAME=postgres | ||
# # DATABASE_USERNAME=peertube | ||
# # DATABASE_PASSWORD=your_database_password | ||
# # DATABASE_NAME=peertube | ||
|
||
# # POSTGRES_PASSWORD=your_database_password | ||
# # DATABASE_PASSWORD=your_database_password | ||
|
||
|
||
|
||
# version: "3.3" | ||
|
||
# services: | ||
# peertube: | ||
# image: chocobozzz/peertube:production-bookworm | ||
# env_file: | ||
# - .env | ||
# ports: | ||
# - "9009:9000" # Port for web interface | ||
# - "1935:1935" # Port for live streaming feature | ||
# volumes: | ||
# - ./docker-volume/data:/data | ||
# - ./docker-volume/config:/config | ||
# depends_on: | ||
# - postgres | ||
# - redis | ||
# restart: "always" | ||
# environment: | ||
# - PEERTUBE_SECRET=${PEERTUBE_SECRET} | ||
# - DATABASE_HOSTNAME=postgres | ||
# - DATABASE_USERNAME=peertube | ||
# - DATABASE_PASSWORD=your_database_password | ||
# - DATABASE_NAME=peertube | ||
|
||
# networks: | ||
# - peertube-net | ||
|
||
# postgres: | ||
# image: postgres:13-alpine | ||
# env_file: | ||
# - .env | ||
# volumes: | ||
# - ./docker-volume/db:/var/lib/postgresql/data | ||
# restart: "always" | ||
# networks: | ||
# - peertube-net | ||
# environment: | ||
# - POSTGRES_PASSWORD=${POSTGRES_PASSWORD} | ||
|
||
# redis: | ||
# image: redis:6-alpine | ||
# volumes: | ||
# - ./docker-volume/redis:/data | ||
# restart: "always" | ||
# networks: | ||
# - peertube-net | ||
|
||
# volumes: | ||
# assets: {} | ||
|
||
# networks: | ||
# peertube-net: | ||
# driver: bridge |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
#https://github.com/TeamPiped/Piped/wiki/Instances | ||
|
||
#https://github.com/TeamPiped/Piped |