ansible/roles/therapy/templates/docker-compose.yml.j2

13 lines
227 B
Django/Jinja

---
version: "3.4"
services:
server:
image: therapy
build: ./source
restart: unless-stopped
command: server
environment:
THERAPY_SECRET: {{ therapy_secret }}
ports:
- "127.0.0.1:5000:5000"