docker-compose update
This commit is contained in:
parent
6cb8058f0f
commit
5d727c18aa
1 changed files with 9 additions and 2 deletions
|
@ -10,6 +10,8 @@ services:
|
||||||
- Instance:Domain=bird.makeup
|
- Instance:Domain=bird.makeup
|
||||||
- Instance:Name=bird.makeup
|
- Instance:Name=bird.makeup
|
||||||
- Instance:AdminEmail=name@domain.ext
|
- Instance:AdminEmail=name@domain.ext
|
||||||
|
- Instance:ParallelTwitterRequests=50
|
||||||
|
- Instance:ParallelFediverseRequests=20
|
||||||
- Db:Type=postgres
|
- Db:Type=postgres
|
||||||
- Db:Host=db
|
- Db:Host=db
|
||||||
- Db:Name=birdsitelive
|
- Db:Name=birdsitelive
|
||||||
|
@ -18,16 +20,21 @@ services:
|
||||||
- Moderation:FollowersBlackListing=bae.st
|
- Moderation:FollowersBlackListing=bae.st
|
||||||
ports:
|
ports:
|
||||||
- "5000:80"
|
- "5000:80"
|
||||||
|
volumes:
|
||||||
|
- type: bind
|
||||||
|
source: ../key.json
|
||||||
|
target: /app/key.json
|
||||||
depends_on:
|
depends_on:
|
||||||
- db
|
- db
|
||||||
db:
|
db:
|
||||||
image: postgres:9
|
image: postgres:15
|
||||||
restart: always
|
restart: always
|
||||||
environment:
|
environment:
|
||||||
- POSTGRES_USER=birdsitelive
|
- POSTGRES_USER=birdsitelive
|
||||||
- POSTGRES_PASSWORD=birdsitelive
|
- POSTGRES_PASSWORD=birdsitelive
|
||||||
- POSTGRES_DB=birdsitelive
|
- POSTGRES_DB=birdsitelive
|
||||||
volumes:
|
volumes:
|
||||||
- ../postgres:/var/lib/postgresql/data
|
- ../postgres15:/var/lib/postgresql/data
|
||||||
ports:
|
ports:
|
||||||
- "5432:5432"
|
- "5432:5432"
|
||||||
|
|
||||||
|
|
Loading…
Add table
Reference in a new issue