OpenTerminal/docker-compose-example.yml

14 lines
309 B
YAML
Raw Normal View History

2023-10-03 19:39:47 +00:00
version: "3.9"
services:
web:
build: .
2024-06-22 00:48:01 +00:00
image: docker.arimelody.me/openterminal
2023-10-03 19:39:47 +00:00
container_name: openterminal
ports:
- 8080:8080
2023-10-03 19:39:47 +00:00
environment:
OPENTERM_HOST: 0.0.0.0
OPENTERM_PORT: 8080
# OPENTERM_TRUSTED_PROXIES: 127.0.0.1,192.168.0.100
2023-10-03 19:39:47 +00:00
restart: unless-stopped