27 lines
570 B
Plaintext
27 lines
570 B
Plaintext
|
# {{ ansible_managed }}
|
||
|
version: '3.7'
|
||
|
services:
|
||
|
photon:
|
||
|
# image: ghcr.io/xyphyn/photon:latest
|
||
|
image: git.opnxng.com/opnxng/photon:latest
|
||
|
container_name: photon
|
||
|
security_opt:
|
||
|
- no-new-privileges
|
||
|
environment:
|
||
|
- PUID=1000
|
||
|
- PGID=1000
|
||
|
- TZ=Asia/Singapore
|
||
|
- PUBLIC_INSTANCE_URL=lemm.ee
|
||
|
- PUBLIC_DEFAULT_FEED=All
|
||
|
- PUBLIC_NSFW_BLUR=false
|
||
|
- PUBLIC_LOCK_TO_INSTANCE=false
|
||
|
restart: unless-stopped
|
||
|
ports:
|
||
|
- '8903:3000'
|
||
|
networks:
|
||
|
- IPv4
|
||
|
|
||
|
networks:
|
||
|
IPv4:
|
||
|
external:
|
||
|
name: IPv4
|