mirror of
https://github.com/idanoo/autobrr
synced 2025-07-22 16:29:12 +00:00
26 lines
No EOL
473 B
YAML
26 lines
No EOL
473 B
YAML
---
|
|
version: "2.1"
|
|
services:
|
|
autobrr:
|
|
image: autobrr:dev
|
|
container_name: autobrr
|
|
volumes:
|
|
- ./config:/config
|
|
ports:
|
|
- "7474:7474"
|
|
restart: unless-stopped
|
|
postgres:
|
|
image: postgres:12.10
|
|
container_name: postgres
|
|
volumes:
|
|
- postgres:/var/lib/postgresql/data
|
|
ports:
|
|
- "5432:5432"
|
|
environment:
|
|
- POSTGRES_USER=autobrr
|
|
- POSTGRES_PASSWORD=postgres
|
|
- POSTGRES_DB=autobrr
|
|
|
|
|
|
volumes:
|
|
postgres: |