drone-runner. Changing port number to avoid conflict with Gitea.
This commit is contained in:
parent
b1988747cd
commit
8720253e78
|
@ -2,7 +2,7 @@
|
||||||
IMAGE_VERSION=1
|
IMAGE_VERSION=1
|
||||||
|
|
||||||
WEBUI_BIND_ADDR=127.0.0.1
|
WEBUI_BIND_ADDR=127.0.0.1
|
||||||
WEBUI_BIND_PORT=3000
|
WEBUI_BIND_PORT=8387
|
||||||
|
|
||||||
# Drone settings
|
# Drone settings
|
||||||
# https://docs.drone.io/runner/docker/installation/linux/
|
# https://docs.drone.io/runner/docker/installation/linux/
|
||||||
|
|
|
@ -11,7 +11,7 @@ services:
|
||||||
ports:
|
ports:
|
||||||
# Optional, used for dashboard:
|
# Optional, used for dashboard:
|
||||||
# https://discourse.drone.io/t/drone-agent-port/5914/5
|
# https://discourse.drone.io/t/drone-agent-port/5914/5
|
||||||
- "${WEBUI_BIND_ADDR:-127.0.0.1}:${WEBUI_BIND_PORT:-3000}:3000"
|
- "${WEBUI_BIND_ADDR:-127.0.0.1}:${WEBUI_BIND_PORT:-8387}:3000"
|
||||||
env_file: .env
|
env_file: .env
|
||||||
restart: unless-stopped
|
restart: unless-stopped
|
||||||
logging:
|
logging:
|
||||||
|
|
|
@ -14,6 +14,6 @@ server {
|
||||||
proxy_set_header Upgrade $http_upgrade;
|
proxy_set_header Upgrade $http_upgrade;
|
||||||
proxy_set_header Connection $http_connection;
|
proxy_set_header Connection $http_connection;
|
||||||
|
|
||||||
proxy_pass http://127.0.0.1:3000/;
|
proxy_pass http://127.0.0.1:8387/;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue