2018-01-29 04:23:38 -06:00
# Docker guide
2018-03-15 08:39:04 -05:00
You can quickly get a server running using Docker. You need to have
[docker ](https://www.docker.com/community-edition ) and
[docker-compose ](https://docs.docker.com/compose/install/ ) installed.
2018-01-29 04:23:38 -06:00
2018-03-15 08:39:04 -05:00
## Production
2018-05-28 03:53:57 -05:00
### Install
2018-01-29 04:23:38 -06:00
2018-03-15 08:39:04 -05:00
PeerTube needs a PostgreSQL and a Redis instance to work correctly. If you want
to quickly set up a full environment, either for trying the service or in
production, you can use a `docker-compose` setup.
2018-01-29 04:23:38 -06:00
```bash
2018-05-28 03:53:57 -05:00
$ cd /your/peertube/directory
$ mkdir ./docker-volume & & mkdir ./docker-volume/traefik
$ curl "https://raw.githubusercontent.com/chocobozzz/PeerTube/master/support/docker/production/config/traefik.toml" > ./docker-volume/traefik/traefik.toml
$ touch ./docker-volume/traefik/acme.json & & chmod 600 ./docker-volume/traefik/acme.json
$ curl -s "https://raw.githubusercontent.com/chocobozzz/PeerTube/master/support/docker/production/docker-compose.yml" > ./docker-compose.yml
```
Update the reverse proxy configuration:
2018-01-29 04:23:38 -06:00
```
2018-05-28 03:53:57 -05:00
$ vim ./docker-volume/traefik/traefik.toml
```
Tweak the `docker-compose.yml` file there according to your needs:
2018-01-29 04:23:38 -06:00
2018-05-28 03:53:57 -05:00
```
$ vim ./docker-compose.yaml
```
You can use the regular `up` command to set it up, with possible overrides of
2018-03-15 08:39:04 -05:00
the environment variables:
2018-01-29 04:23:38 -06:00
2018-03-15 08:39:04 -05:00
```bash
2018-05-28 03:53:57 -05:00
$ PEERTUBE_WEBSERVER_HOSTNAME="domain.tld" docker-compose up
2018-03-15 08:39:04 -05:00
```
Other environment variables are used in
`support/docker/production/config/custom-environment-variables.yaml` and can be
intuited from usage.
**Important**: note that you'll get the initial `root` user password from the
program output, so check out your logs to find them.
2018-05-28 03:53:57 -05:00
### Upgrade
Pull the latest images and rerun PeerTube:
```
2018-05-28 04:39:09 -05:00
$ cd /your/peertube/directory
$ docker-compose down
2018-05-28 03:53:57 -05:00
$ docker-compose pull
2018-05-28 04:39:09 -05:00
$ PEERTUBE_WEBSERVER_HOSTNAME="domain.tld" docker-compose up -d
2018-05-28 03:53:57 -05:00
```
## Build your own Docker image
```bash
$ git clone https://github.com/chocobozzz/PeerTube /tmp/peertube
$ cd /tmp/peertube
$ docker build . -f ./support/docker/production/Dockerfile.stretch
```
2018-03-15 08:39:04 -05:00
## Development
2018-01-29 04:23:38 -06:00
2018-05-28 03:53:57 -05:00
We don't have a Docker image for development. See [the CONTRIBUTING guide ](https://github.com/Chocobozzz/PeerTube/blob/develop/.github/CONTRIBUTING.md#develop )
for more information on how you can hack PeerTube!