14 lines
226 B
YAML
14 lines
226 B
YAML
|
version: "3.4"
|
||
|
|
||
|
services:
|
||
|
ifconfig:
|
||
|
image: ifconfig.io:latest
|
||
|
build:
|
||
|
context: ./
|
||
|
target: production
|
||
|
ports:
|
||
|
- ${PORT:-8080}:8080
|
||
|
environment:
|
||
|
TLS: ${TLS:-0}
|
||
|
HOSTNAME: ${HOSTNAME}
|