Skip to content

Commit

Permalink
testing peertube
Browse files Browse the repository at this point in the history
  • Loading branch information
JAlcocerT committed Apr 28, 2024
1 parent 635f5fd commit b7dd32a
Show file tree
Hide file tree
Showing 3 changed files with 108 additions and 0 deletions.
33 changes: 33 additions & 0 deletions Media/Video/MediaGoblin_Docker-compose.yml
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 .
72 changes: 72 additions & 0 deletions Media/Video/PeerTube_Docker-compose.yml
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
3 changes: 3 additions & 0 deletions Media/Video/Piped_Docker-compose.yml
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

0 comments on commit b7dd32a

Please sign in to comment.