Compare commits

...
Sign in to create a new pull request.

3 commits
main ... master

Author SHA1 Message Date
723121962e Mise à jour de 'README.md' 2022-11-02 12:00:09 +01:00
b99b55393e Adding readme 2022-11-02 11:58:05 +01:00
6433c20a70 Adding username 2022-11-02 11:39:49 +01:00
2 changed files with 13 additions and 1 deletions

12
README.md Normal file
View file

@ -0,0 +1,12 @@
# Drone CI docker composer
Use this docker-compose configuration file to start DroneCI server and a runner.
I'm running DroneCI on port 8000 (not SSL) with Nginx as reverse proxy listening on 80/443. Nginx is in charge of SSL with Certbot.
You must:
- `cp .env.example .env` and adapt it to your needs.
- take a look in docker-compose.yml to make sure everything fits your needs
- run `docker compose up -d`

View file

@ -16,7 +16,7 @@ services:
- DRONE_SERVER_HOST=${DRONE_HOST} - DRONE_SERVER_HOST=${DRONE_HOST}
- DRONE_SERVER_PROTO=${DRONE_PROTO} - DRONE_SERVER_PROTO=${DRONE_PROTO}
- DRONE_TLS_AUTOCERT=${DRONE_TLS_AUTOCERT} - DRONE_TLS_AUTOCERT=${DRONE_TLS_AUTOCERT}
- DRONE_USER_CREATE=username:axel,admin:true - DRONE_USER_CREATE=username:username,admin:true
- DRONE_COOKIE_SECRET=${DRONE_COOKIE_SECRET} - DRONE_COOKIE_SECRET=${DRONE_COOKIE_SECRET}
- DRONE_COOKIE_TIMEOUT=72h - DRONE_COOKIE_TIMEOUT=72h
- TZ=${DRONE_TIMEZONE} - TZ=${DRONE_TIMEZONE}