Robert Kaussow
1a40a2dcdc
All checks were successful
continuous-integration/drone/push Build is passing
23 lines
360 B
YAML
23 lines
360 B
YAML
version: '2'
|
|
|
|
services:
|
|
ttrss:
|
|
image: xoxys/ttrss:latest
|
|
ports:
|
|
- "80:80"
|
|
depends_on:
|
|
- db
|
|
|
|
db:
|
|
image: postgres
|
|
environment:
|
|
POSTGRES_USER: postgres
|
|
POSTGRES_PASSWORD: secure
|
|
POSTGRES_DB: ttrss
|
|
volumes:
|
|
- postgres_data:/var/lib/postgresql/data
|
|
|
|
volumes:
|
|
postgres_data:
|
|
driver: local
|