You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
42 lines
985 B
42 lines
985 B
---
|
|
- hosts: babybuddy
|
|
tasks:
|
|
|
|
- file:
|
|
path: /usr/share/babybuddy
|
|
state: directory
|
|
|
|
- docker_compose:
|
|
project_name: babybuddy
|
|
definition:
|
|
version: "2.1"
|
|
services:
|
|
babybuddy:
|
|
# https://github.com/babybuddy/babybuddy/issues/337
|
|
image: lscr.io/linuxserver/babybuddy:v1.9.0-ls14
|
|
container_name: babybuddy
|
|
environment:
|
|
- TZ=America/Los_Angeles
|
|
volumes:
|
|
- /usr/share/babybuddy:/config
|
|
ports:
|
|
- 8000:8000
|
|
restart: unless-stopped
|
|
|
|
- template:
|
|
src: babybuddy.nginx
|
|
dest: /etc/nginx/sites-available/babybuddy.conf
|
|
notify: Restart nginx
|
|
- file:
|
|
src: /etc/nginx/sites-available/babybuddy.conf
|
|
dest: /etc/nginx/sites-enabled/babybuddy.conf
|
|
state: link
|
|
notify: Restart nginx
|
|
|
|
handlers:
|
|
|
|
- name: Restart nginx
|
|
service:
|
|
name: nginx
|
|
state: restarted
|