harness-drone/docs/setup/upgrade.md

30 lines
691 B
Markdown
Raw Normal View History

2015-10-08 00:17:15 +00:00
# Upgrading
2015-10-26 17:28:01 +00:00
> Warning. There is no automated migration from 0.3 to 0.4 due to substantial changes in database structure.
2015-10-08 00:17:15 +00:00
Drone is built continuously, with updates available daily. In order to upgrade Drone you must first stop and remove your running Drone instance:
```
sudo docker stop drone
sudo docker rm drone
```
Pull the latest Drone image:
```
sudo docker pull drone/drone:0.4
```
2015-10-26 17:28:01 +00:00
Re-run the container using the latest Drone image:
2015-10-08 00:17:15 +00:00
```
sudo docker run \
--volume /var/lib/drone:/var/lib/drone \
--volume /var/run/docker.sock:/var/run/docker.sock \
--env-file /etc/drone/dronerc \
--restart=always \
--publish=80:8000 \
--detach=true \
--name=drone \
drone/drone:0.4
```