Skip to content
Snippets Groups Projects
Forked from funkwhale / funkwhale
Loading
docker.rst 1.93 KiB

Docker installation

Docker is the easiest way to get a Funkwhale instance up and running.

First, ensure you have Docker and docker-compose installed.

Download the sample docker-compose file:

mkdir -p /srv/funkwhale
cd /srv/funkwhale
curl -L -o docker-compose.yml "https://code.eliotberriot.com/funkwhale/funkwhale/raw/|version|/deploy/docker-compose.yml"

Create your env file:

export FUNKWHALE_VERSION="|version|"
curl -L -o .env "https://code.eliotberriot.com/funkwhale/funkwhale/raw/|version|/deploy/env.prod.sample"
sed -i "s/FUNKWHALE_VERSION=latest/FUNKWHALE_VERSION=$FUNKWHALE_VERSION/" .env

Ensure to edit it to match your needs (this file is heavily commented)

Then, you should be able to pull the required images:

docker-compose pull