mirror of
https://github.com/qwerinope/qweribot.git
synced 2025-12-19 08:41:39 +01:00
26 lines
508 B
YAML
26 lines
508 B
YAML
services:
|
|
pocketbase:
|
|
container_name: pocketbase
|
|
build:
|
|
context: .
|
|
dockerfile: Dockerfile.pocketbase
|
|
ports:
|
|
- 8090:8090
|
|
volumes:
|
|
- ./pb:/pb/pb_data
|
|
restart: no
|
|
bot:
|
|
container_name: dogbot
|
|
build:
|
|
context: .
|
|
dockerfile: Dockerfile.dogbot
|
|
restart: no
|
|
develop:
|
|
watch:
|
|
- action: rebuild
|
|
path: ./src
|
|
environment:
|
|
- CLIENT_ID=$CLIENT_ID
|
|
- CLIENT_SECRET=$CLIENT_SECRET
|
|
- OAUTH_CODE=$OAUTH_CODE
|