22 lines
390 B
Plaintext
22 lines
390 B
Plaintext
|
# {{ ansible_managed }}
|
||
|
version: '3.7'
|
||
|
services:
|
||
|
it-tools:
|
||
|
container_name: it-tools
|
||
|
image: ghcr.io/corentinth/it-tools:latest
|
||
|
restart: unless-stopped
|
||
|
security_opt:
|
||
|
- no-new-privileges
|
||
|
environment:
|
||
|
- PUID=1000
|
||
|
- PGID=1000
|
||
|
- TZ=Asia/Singapore
|
||
|
ports:
|
||
|
- 8892:80
|
||
|
networks:
|
||
|
- IPv4
|
||
|
|
||
|
networks:
|
||
|
IPv4:
|
||
|
external:
|
||
|
name: IPv4
|