mirror of
https://github.com/markbeep/AudioBookRequest.git
synced 2026-01-12 16:59:40 -06:00
* update migrations to support postgres * fix uv lockfile * adjust migrations for psql * remove action on pr (push only) * remove pragmas for psql * update readme
31 lines
577 B
YAML
31 lines
577 B
YAML
services:
|
|
web:
|
|
# start with `docker-compose --profile local up`
|
|
profiles: [local]
|
|
build:
|
|
context: .
|
|
args:
|
|
- VERSION=local
|
|
volumes:
|
|
- ./config:/config
|
|
ports:
|
|
- "8000:8000"
|
|
|
|
gotify:
|
|
image: gotify/server
|
|
ports:
|
|
- "8080:80"
|
|
volumes:
|
|
- ./data/gotify/data:/app/data
|
|
|
|
psql:
|
|
image: postgres:15
|
|
environment:
|
|
POSTGRES_USER: abr
|
|
POSTGRES_PASSWORD: password
|
|
POSTGRES_DB: audiobookrequest
|
|
volumes:
|
|
- ./data/postgres:/var/lib/postgresql/data
|
|
ports:
|
|
- "5432:5432"
|