mirror of
https://github.com/viq/NewsBlur.git
synced 2025-08-19 12:55:34 +00:00
17 lines
366 B
YAML
17 lines
366 B
YAML
![]() |
---
|
||
|
- name: Start postgres container
|
||
|
docker_container:
|
||
|
name: postgres
|
||
|
image: postgres:13.1
|
||
|
state: started
|
||
|
env:
|
||
|
DOCKERBUILD: "True"
|
||
|
POSTGRES_USER: newsblur
|
||
|
POSTGRES_PASSWORD: newsblur
|
||
|
restart_policy: unless-stopped
|
||
|
ports:
|
||
|
- '5432:5432'
|
||
|
volumes:
|
||
|
- /srv/newsblur/docker/volumes/postgres:/var/lib/postgresql/data
|
||
|
|