20 lines
486 B
YAML
20 lines
486 B
YAML
version: "3.8"
|
|
|
|
services:
|
|
13ft-ladder:
|
|
container_name: 13ft-ladder
|
|
image: wasimaster/13ft:latest
|
|
restart: unless-stopped
|
|
hostname: 13ft-ladder
|
|
ports:
|
|
- "192.168.1.155:5000:5000/tcp" # Keeps your specific host IP binding
|
|
environment:
|
|
PORT: "5000"
|
|
TZ: America/New_York # Add for consistent timestamps
|
|
working_dir: "/app"
|
|
entrypoint:
|
|
- "python"
|
|
command:
|
|
- "portable.py"
|
|
logging:
|
|
driver: json-file |