cloutier--bird.makeup/docker-compose.yml

41 lines
1.1 KiB
YAML
Raw Normal View History

2020-12-29 00:44:59 -05:00
version: "3"
services:
2022-11-27 17:33:11 -05:00
server:
2022-12-26 10:47:26 -05:00
image: cloutier/bird.makeup:latest
2022-11-27 17:33:11 -05:00
restart: always
container_name: birdmakeup
environment:
- Instance:Domain=bird.makeup
2022-12-26 10:47:26 -05:00
- Instance:Name=bird.makeup
2022-11-27 17:33:11 -05:00
- Instance:AdminEmail=name@domain.ext
2023-03-10 19:52:15 -05:00
- Instance:ParallelTwitterRequests=50
- Instance:ParallelFediverseRequests=20
2022-11-27 17:33:11 -05:00
- Db:Type=postgres
- Db:Host=db
- Db:Name=birdsitelive
- Db:User=birdsitelive
- Db:Password=birdsitelive
2022-12-26 10:47:26 -05:00
- Moderation:FollowersBlackListing=bae.st
2022-11-27 17:33:11 -05:00
ports:
- "5000:80"
2023-03-10 19:52:15 -05:00
volumes:
- type: bind
source: ../key.json
target: /app/key.json
2022-11-27 17:33:11 -05:00
depends_on:
- db
2020-12-29 00:44:59 -05:00
db:
2023-03-10 19:52:15 -05:00
image: postgres:15
2020-12-29 00:44:59 -05:00
restart: always
environment:
- POSTGRES_USER=birdsitelive
- POSTGRES_PASSWORD=birdsitelive
- POSTGRES_DB=birdsitelive
volumes:
2023-03-10 19:52:15 -05:00
- ../postgres15:/var/lib/postgresql/data
ports:
- "5432:5432"
2023-03-10 19:52:15 -05:00