11 lines
373 B
YAML
11 lines
373 B
YAML
version: '3.8'
|
|
|
|
services:
|
|
tinyice:
|
|
image: git.smartcraft.me/minster586/tinyice:latest
|
|
container_name: tinyice
|
|
ports:
|
|
- "8000:8000" # You can change the left hand side for the port Just leave the righthand side alone
|
|
volumes:
|
|
- /host/path/to/the/config:/app/config # You can change the Left hand side of ":" Marker
|
|
restart: unless-stopped |