23 lines
418 B
Plaintext
23 lines
418 B
Plaintext
|
# {{ ansible_managed }}
|
||
|
version: '3.3'
|
||
|
services:
|
||
|
imgin:
|
||
|
image: git.opnxng.com/opnxng/imgin:latest
|
||
|
container_name: imgin
|
||
|
security_opt:
|
||
|
- no-new-privileges
|
||
|
environment:
|
||
|
- PUID=1000
|
||
|
- PGID=1000
|
||
|
- TZ=Asia/Singapore
|
||
|
- BUILDX_GIT_INFO=false
|
||
|
restart: unless-stopped
|
||
|
ports:
|
||
|
- '8899:8080'
|
||
|
networks:
|
||
|
- IPv4
|
||
|
|
||
|
networks:
|
||
|
IPv4:
|
||
|
external:
|
||
|
name: IPv4
|