22 lines
373 B
YAML
22 lines
373 B
YAML
|
|
services:
|
|
termix:
|
|
image: ghcr.io/lukegus/termix:latest
|
|
container_name: termix
|
|
restart: unless-stopped
|
|
ports:
|
|
- '8080:8080'
|
|
volumes:
|
|
- termix_data:/app/data
|
|
environment:
|
|
PORT: '8080'
|
|
networks:
|
|
DMZ:
|
|
ipv4_address: 10.10.12.26
|
|
volumes:
|
|
termix_data:
|
|
external: true
|
|
|
|
networks:
|
|
DMZ:
|
|
external: true |