Hi guys!
I am trying to get drone work with my gitea instance.
When I try to get into the drone page I get
404 page not found
Docker-compose.yml
version: '3'
services:
drone:
image: drone/drone:latest
volumes:
- $PWD/dbdata:/var/lib/drone/
environment:
- DRONE_OPEN=true
- DRONE_HOST=http://drone.localhost
# - DRONE_HOST=https://drone.localhost
- DRONE_SECRET=drone
- DRONE_ADMIN=drone
# Gitea Config
- DRONE_GITEA=true
- DRONE_GITEA_URL=https://git.localhost
- DRONE_GITEA_SKIP_VERIFY=true
- DRONE_NETWORK=srv
networks:
- srv
drone-agent:
image: drone/agent:latest
restart: always
depends_on:
- drone
volumes:
- /var/run/docker.sock:/var/run/docker.sock
networks:
- srv
environment:
- DRONE_SERVER=drone:9000
- DRONE_SECRET=drone-workshop
- DRONE_MAX_PROCS=3
networks:
srv:
external: true
the logs
Attaching to gitea_giteadb_1, gitea_gitea_1, gitea_drone_1, gitea_drone-agent_1
giteadb_1 | LOG: database system was shut down at 2019-10-06 05:54:13 UTC
gitea_1 | Server listening on :: port 22.
gitea_1 | Server listening on 0.0.0.0 port 22.
giteadb_1 | LOG: MultiXact member wraparound protections are now enabled
giteadb_1 | LOG: autovacuum launcher started
drone_1 | {“level”:“fatal”,“msg”:“main: source code management system not configured”,“time”:“2019-10-06T05:57:15Z”}
giteadb_1 | LOG: database system is ready to accept connections
gitea_1 | 2019/10/06 05:57:15 …dules/setting/git.go:87:newGit() [I] Git Version: 2.22.0, Wire Protocol Version 2 Enabled
gitea_1 | 2019/10/06 05:57:15 routers/init.go:73:GlobalInit() [T] AppPath: /app/gitea/gitea
gitea_1 | 2019/10/06 05:57:15 routers/init.go:74:GlobalInit() [T] AppWorkPath: /app/gitea
gitea_1 | 2019/10/06 05:57:15 routers/init.go:75:GlobalInit() [T] Custom path: /data/gitea
gitea_1 | 2019/10/06 05:57:15 routers/init.go:76:GlobalInit() [T] Log path: /data/gitea/log
gitea_1 | 2019/10/06 05:57:15 …dules/setting/log.go:226:newLogService() [I] Gitea v1.10.0+dev-375-g8a828500e built with GNU Make 4.2.1, go1.13.1 : bindata, sqlite, sqlite_unlock_notify
gitea_drone_1 exited with code 1