Files
go-system-ui/system/docker-compose.yml
T
2022-02-12 11:09:31 +08:00

23 lines
457 B
YAML

version: '2'
services:
platform_go:
image: golang:latest
container_name: client_go
working_dir: /apps
volumes:
- ./config.ini:/apps/config.ini
- ./client.bin:/apps/client.bin
environment:
TZ: "Asia/Shanghai"
ports:
- "8666:8666"
logging:
driver: "json-file"
options:
max-size: "10240k"
max-file: "10"
network_mode: "bridge"
command: ./client.bin
restart: always