23 lines
415 B
Django/Jinja
23 lines
415 B
Django/Jinja
# {{ ansible_managed }}
|
|
services:
|
|
standardnotes:
|
|
image: standardnotes/web:latest
|
|
container_name: standardnotes
|
|
security_opt:
|
|
- no-new-privileges
|
|
# cap_drop:
|
|
# - ALL
|
|
environment:
|
|
- PUID=1000
|
|
- PGID=1000
|
|
- TZ=Asia/Singapore
|
|
restart: unless-stopped
|
|
ports:
|
|
- 8911:80
|
|
networks:
|
|
- standardnotes
|
|
|
|
networks:
|
|
standardnotes:
|
|
name: standardnotes
|