mirror of
https://github.com/georgyo/ifconfig.io.git
synced 2025-02-07 21:53:47 +00:00
042e135147
This provides a Dockerfile with an docker-compose.yml to install ifconfig.io on a Docker Server
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}
|