Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
D
Dockerfiles
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Container Registry
Model registry
Operate
Environments
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
This is an archived project. Repository and other project resources are read-only.
Show more breadcrumbs
Picasoft
Technique
Dockerfiles
Commits
9ef0619c
Commit
9ef0619c
authored
4 years ago
by
ppom
Browse files
Options
Downloads
Patches
Plain Diff
[Peertube] Add upstream docker-compose ; First tweaks
parent
f0b1b929
No related branches found
Branches containing commit
No related tags found
1 merge request
!56
Peertube
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
pica-peertube/.env
+0
-0
0 additions, 0 deletions
pica-peertube/.env
pica-peertube/docker-compose.yml
+64
-0
64 additions, 0 deletions
pica-peertube/docker-compose.yml
with
64 additions
and
0 deletions
pica-peertube/.env
0 → 100644
+
0
−
0
View file @
9ef0619c
This diff is collapsed.
Click to expand it.
pica-peertube/docker-compose.yml
0 → 100644
+
64
−
0
View file @
9ef0619c
version
:
"
3.3"
services
:
peertube
:
# If you don't want to use the official image and build one from sources
# build:
# context: .
# dockerfile: ./support/docker/production/Dockerfile.buster
image
:
chocobozzz/peertube:production-buster
env_file
:
-
.env.secrets
-
.env
# Traefik labels are suggested as an example for people using Traefik,
# remove them if you are using another reverse proxy.
labels
:
traefik.enable
:
"
true"
traefik.frontend.rule
:
"
Host:${PEERTUBE_WEBSERVER_HOSTNAME}"
traefik.port
:
"
9000"
# If you don't want to use a reverse proxy (not suitable for production!)
# ports:
# - "80:9000"
volumes
:
-
./docker-volume/data:/data
-
./docker-volume/config:/config
depends_on
:
-
postgres
-
redis
-
postfix
restart
:
"
always"
postgres
:
image
:
postgres:10-alpine
env_file
:
-
.env
volumes
:
-
./docker-volume/db:/var/lib/postgresql/data
restart
:
"
always"
labels
:
traefik.enable
:
"
false"
redis
:
image
:
redis:4-alpine
volumes
:
-
./docker-volume/redis:/data
restart
:
"
always"
labels
:
traefik.enable
:
"
false"
postfix
:
image
:
mwader/postfix-relay
env_file
:
-
.env
volumes
:
-
./docker-volume/opendkim/keys:/etc/opendkim/keys
labels
:
traefik.enable
:
"
false"
restart
:
"
always"
networks
:
default
:
ipam
:
driver
:
default
config
:
-
subnet
:
172.18.0.0/16
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment