01f387f447
docker-image / docker_amd64 (push) Has been cancelled
docker-image / docker_arm64 (push) Has been cancelled
release / prepare-release (push) Has been cancelled
docker-image / docker_manifest (push) Has been cancelled
release / build darwin-arm64 (push) Has been cancelled
release / build darwin-amd64 (push) Has been cancelled
release / build windows-arm64 (push) Has been cancelled
release / build windows-amd64 (push) Has been cancelled
release / build linux-arm64 glibc (push) Has been cancelled
release / build linux-amd64 glibc (push) Has been cancelled
release / build linux-arm64 no-plugin (push) Has been cancelled
release / build linux-amd64 no-plugin (push) Has been cancelled
release / build freebsd-arm64-no-plugin (push) Has been cancelled
release / build freebsd-amd64 (push) Has been cancelled
release / publish-checksums (push) Has been cancelled
30 lines
828 B
YAML
30 lines
828 B
YAML
services:
|
|
cli-proxy-api:
|
|
image: ${CLI_PROXY_IMAGE:-eceasy/cli-proxy-api:latest}
|
|
pull_policy: always
|
|
build:
|
|
context: .
|
|
dockerfile: Dockerfile
|
|
args:
|
|
VERSION: ${VERSION:-dev}
|
|
COMMIT: ${COMMIT:-none}
|
|
BUILD_DATE: ${BUILD_DATE:-unknown}
|
|
container_name: cli-proxy-api
|
|
# env_file:
|
|
# - .env
|
|
environment:
|
|
DEPLOY: ${DEPLOY:-}
|
|
ports:
|
|
- "8317:8317"
|
|
- "8085:8085"
|
|
- "1455:1455"
|
|
- "54545:54545"
|
|
- "51121:51121"
|
|
- "11451:11451"
|
|
volumes:
|
|
- ${CLI_PROXY_CONFIG_PATH:-./config.yaml}:/CLIProxyAPI/config.yaml
|
|
- ${CLI_PROXY_AUTH_PATH:-./auths}:/root/.cli-proxy-api
|
|
- ${CLI_PROXY_LOG_PATH:-./logs}:/CLIProxyAPI/logs
|
|
- ${CLI_PROXY_PLUGIN_PATH:-./plugins}:/CLIProxyAPI/plugins
|
|
restart: unless-stopped
|