40 lines
1.1 KiB
YAML
40 lines
1.1 KiB
YAML
version: "3"
|
|
|
|
services:
|
|
|
|
server:
|
|
image: cloutier/bird.makeup:latest
|
|
restart: always
|
|
container_name: birdmakeup
|
|
environment:
|
|
- Instance:Domain=bird.makeup
|
|
- Instance:Name=bird.makeup
|
|
- Instance:AdminEmail=name@domain.ext
|
|
- Instance:ParallelTwitterRequests=50
|
|
- Instance:ParallelFediverseRequests=20
|
|
- Db:Type=postgres
|
|
- Db:Host=db
|
|
- Db:Name=birdsitelive
|
|
- Db:User=birdsitelive
|
|
- Db:Password=birdsitelive
|
|
- Moderation:FollowersBlackListing=bae.st
|
|
ports:
|
|
- "5000:80"
|
|
volumes:
|
|
- type: bind
|
|
source: ../key.json
|
|
target: /app/key.json
|
|
depends_on:
|
|
- db
|
|
db:
|
|
image: postgres:15
|
|
restart: always
|
|
environment:
|
|
- POSTGRES_USER=birdsitelive
|
|
- POSTGRES_PASSWORD=birdsitelive
|
|
- POSTGRES_DB=birdsitelive
|
|
volumes:
|
|
- ../postgres15:/var/lib/postgresql/data
|
|
ports:
|
|
- "5432:5432"
|
|
|