Funkwhale - A social platform to enjoy and share music
Everything you need to deploy Funkwhale with BlastDock
One command deployment
Production-ready security
Customizable settings
Ready to scale up
blastdock init
Initialize new project
blastdock deploy
Deploy the application
blastdock status
Check deployment status
blastdock logs
View application logs
Get Funkwhale up and running in minutes with our one-click installation.
First, install BlastDock using pip (recommended):
pip install blastdock
Then deploy Funkwhale with:
blastdock init funkwhale
Interactive mode:
blastdock init funkwhale -i
blastdock templates
List available templates
blastdock status project
Check deployment status
blastdock logs project
View application logs
blastdock stop project
Stop deployment
Customize your Funkwhale installation with these configuration options.
Web interface port
Database password
Admin username
Admin email
Admin password
Complete Docker Compose configuration for Funkwhale deployment.
version: '3.8'
services:
postgres:
image: postgres:13
container_name: {{ project_name }}_postgres
restart: unless-stopped
environment:
0: POSTGRES_USER=funkwhale
1: POSTGRES_PASSWORD={{ db_password }}
2: POSTGRES_DB=funkwhale
volumes:
- /var/lib/postgresql/data
networks:
- funkwhale_network
redis:
image: redis:6
container_name: {{ project_name }}_redis
restart: unless-stopped
networks:
- funkwhale_network
funkwhale:
image: funkwhale/funkwhale:latest
container_name: {{ project_name }}_funkwhale
restart: unless-stopped
depends_on:
- postgres
- redis
ports:
- "80"
environment:
0: FUNKWHALE_HOSTNAME=localhost
1: FUNKWHALE_PROTOCOL=http
- FUNKWHALE_URL=http: //localhost:{{ port }}
2: DJANGO_SETTINGS_MODULE=config.settings.production
- DATABASE_URL=postgresql: //funkwhale:{{ db_password }}@postgres/funkwhale
- CACHE_URL=redis: //redis:6379/0
3: FUNKWHALE_ADMIN_USERNAME={{ admin_username }}
4: FUNKWHALE_ADMIN_EMAIL={{ admin_email }}
5: FUNKWHALE_ADMIN_PASSWORD={{ admin_password }}
volumes:
- /data/media
- /data/static
- /data
networks:
- funkwhale_network
volumes:
postgres_data:
driver: local
funkwhale_media:
driver: local
funkwhale_static:
driver: local
funkwhale_data:
driver: local
networks:
funkwhale_network:
driver: bridge