mirror of
https://github.com/PluralKit/PluralKit.git
synced 2026-02-04 04:56:49 +00:00
web: add Docker support for web
This commit is contained in:
parent
95a7e5e821
commit
6cd36e2c5e
2 changed files with 14 additions and 4 deletions
|
|
@ -2,10 +2,18 @@ version: "3"
|
|||
services:
|
||||
bot:
|
||||
build: .
|
||||
entrypoint: ["dotnet", "run", "--project", "PluralKit.Bot"]
|
||||
environment:
|
||||
- PK_TOKEN
|
||||
- "PK_DATABASE_URI=Host=db;Username=postgres;Password=postgres;Database=postgres"
|
||||
- "PluralKit:Bot:Token"
|
||||
- "PluralKit:Database=Host=db;Username=postgres;Password=postgres;Database=postgres"
|
||||
links:
|
||||
- db
|
||||
web:
|
||||
build: .
|
||||
entrypoint: ["dotnet", "run", "--project", "PluralKit.Web"]
|
||||
environment:
|
||||
- "PluralKit:Database=Host=db;Username=postgres;Password=postgres;Database=postgres"
|
||||
links:
|
||||
- db
|
||||
db:
|
||||
image: postgres:alpine
|
||||
Loading…
Add table
Add a link
Reference in a new issue