Pixelfed

Pixelfed - Federated Image Sharing Platform

8080
Default Port
3
Services
24.5/20
Complexity
Medium
Memory Usage
Configuration

Installation Command

blastdock init pixelfed

Template Overview

Everything you need to deploy Pixelfed with BlastDock

Quick Deploy

One command deployment

Secure

Production-ready security

Configurable

Customizable settings

Scalable

Ready to scale up

What's Included

Pixelfed
pixelfed/pixelfed:latest
Postgres
postgres:13
Redis
redis:6
Categories
Database
Security Features
Password Protection, Admin User
Resource Requirements
CPU: Medium, Memory: Medium , Storage Required

Quick Commands

blastdock init Initialize new project
blastdock deploy Deploy the application
blastdock status Check deployment status
blastdock logs View application logs

Quick Installation

Get Pixelfed up and running in minutes with our one-click installation.

BlastDock Installation

First, install BlastDock using pip (recommended):

Terminal
pip install blastdock

Then deploy Pixelfed with:

Terminal
blastdock init pixelfed

Interactive mode:

Terminal
blastdock init pixelfed -i

What's Included

Pixelfed
Container service
Postgres
Container service
Redis
Container service

BlastDock Commands

blastdock templates List available templates
blastdock status project Check deployment status
blastdock logs project View application logs
blastdock stop project Stop deployment

Configuration Options

Customize your Pixelfed installation with these configuration options.

6
Required Fields
0
Optional Fields
3
Auto-Generated Passwords

Port

Web interface port

port
Default: 8080
Required: Yes

Db Password

Database password

password
Default: ••••••••••••
Required: Yes
Security: Auto-generated

App Key

Application key

password
Default: ••••••••••••
Required: Yes
Security: Auto-generated

Admin Email

Admin email

string
Required: Yes

Admin Password

Admin password

password
Default: ••••••••••••
Required: Yes
Security: Auto-generated

App Name

Application name

string
Default: Pixelfed
Required: Yes

Docker Compose

Complete Docker Compose configuration for Pixelfed deployment.

3
Services
2
Volumes
1
Networks
1
Exposed Ports
docker-compose.yml
version: '3.8'

services:
  postgres:
    image: postgres:13
    container_name: {{ project_name }}_postgres
    restart: unless-stopped
    environment:
      0: POSTGRES_PASSWORD={{ db_password }}
      1: POSTGRES_USER=pixelfed
      2: POSTGRES_DB=pixelfed
    volumes:
      - /var/lib/postgresql/data
    networks:
      - pixelfed_network

  redis:
    image: redis:6
    container_name: {{ project_name }}_redis
    restart: unless-stopped
    networks:
      - pixelfed_network

  pixelfed:
    image: pixelfed/pixelfed:latest
    container_name: {{ project_name }}_pixelfed
    restart: unless-stopped
    depends_on:
      - postgres
      - redis
    ports:
      - "80"
    environment:
      0: APP_NAME={{ app_name }}
      1: APP_ENV=production
      2: APP_KEY={{ app_key }}
      3: APP_DEBUG=false
      - APP_URL=http: //localhost:{{ port }}
      4: DB_CONNECTION=pgsql
      5: DB_HOST=postgres
      6: DB_PORT=5432
      7: DB_DATABASE=pixelfed
      8: DB_USERNAME=pixelfed
      9: DB_PASSWORD={{ db_password }}
      10: REDIS_HOST=redis
      11: REDIS_PORT=6379
      - ADMIN_DOMAIN=localhost: {{ port }}
      12: ADMIN_EMAIL={{ admin_email }}
      13: ADMIN_PASSWORD={{ admin_password }}
    volumes:
      - /var/www/storage
    networks:
      - pixelfed_network

volumes:
  postgres_data:
    driver: local

  pixelfed_storage:
    driver: local

networks:
  pixelfed_network:
    driver: bridge