22 lines
379 B
Plaintext
22 lines
379 B
Plaintext
|
# {{ ansible_managed }}
|
||
|
version: "3.7"
|
||
|
services:
|
||
|
cinny:
|
||
|
image: ghcr.io/cinnyapp/cinny:latest
|
||
|
container_name: cinny
|
||
|
security_opt:
|
||
|
- no-new-privileges
|
||
|
environment:
|
||
|
- PUID=1000
|
||
|
- PGID=1000
|
||
|
- TZ=Asia/Singapore
|
||
|
ports:
|
||
|
- 8901:80
|
||
|
restart: unless-stopped
|
||
|
networks:
|
||
|
- IPv4
|
||
|
|
||
|
networks:
|
||
|
IPv4:
|
||
|
external:
|
||
|
name: IPv4
|