Drone CI server and Drone Docker runner. #34

Merged
skobkin merged 13 commits from feature_drone into master 2022-03-29 14:23:15 +00:00
3 changed files with 3 additions and 3 deletions
Showing only changes of commit 8720253e78 - Show all commits

View File

@ -2,7 +2,7 @@
IMAGE_VERSION=1
WEBUI_BIND_ADDR=127.0.0.1
WEBUI_BIND_PORT=3000
WEBUI_BIND_PORT=8387
# Drone settings
# https://docs.drone.io/runner/docker/installation/linux/

View File

@ -11,7 +11,7 @@ services:
ports:
# Optional, used for dashboard:
# 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
restart: unless-stopped
logging:

View File

@ -14,6 +14,6 @@ server {
proxy_set_header Upgrade $http_upgrade;
proxy_set_header Connection $http_connection;
proxy_pass http://127.0.0.1:3000/;
proxy_pass http://127.0.0.1:8387/;
}
}