22 lines
405 B
Django/Jinja
22 lines
405 B
Django/Jinja
# {{ 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:
|
|
- imgin
|
|
|
|
networks:
|
|
imgin:
|
|
name: imgin |