You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

74 lines
3.0 KiB

  1. # Docker for Gogs
  2. Visit [Docker Hub](https://hub.docker.com/r/gogs/gogs/) or [QUAY](https://quay.io/repository/gogs/gogs) see all available tags.
  3. ## Usage
  4. To keep your data out of Docker container, we do a volume(`/var/gogs` -> `/data`) here, and you can change it based on your situation.
  5. ```
  6. # Pull image from Docker Hub.
  7. $ docker pull gogs/gogs
  8. # Create local directory for volume.
  9. $ mkdir -p /var/gogs
  10. # Use `docker run` for the first time.
  11. $ docker run --name=gogs -p 10022:22 -p 10080:3000 -v /var/gogs:/data gogs/gogs
  12. # Use `docker start` if you have stopped it.
  13. $ docker start gogs
  14. ```
  15. Files will be store in local path `/var/gogs` in my case.
  16. Directory `/var/gogs` keeps Git repositories and Gogs data:
  17. /var/gogs
  18. |-- git
  19. | |-- gogs-repositories
  20. |-- ssh
  21. | |-- # ssh public/private keys for Gogs
  22. |-- gogs
  23. |-- conf
  24. |-- data
  25. |-- log
  26. ### Volume with data container
  27. If you're more comfortable with mounting data to a data container, the commands you execute at the first time will look like as follows:
  28. ```
  29. # Create data container
  30. docker run --name=gogs-data --entrypoint /bin/true gogs/gogs
  31. # Use `docker run` for the first time.
  32. docker run --name=gogs --volumes-from gogs-data -p 10022:22 -p 10080:3000 gogs/gogs
  33. ```
  34. ## Settings
  35. Most of settings are obvious and easy to understand, but there are some settings can be confusing by running Gogs inside Docker:
  36. - **Repository Root Path**: keep it as default value `/home/git/gogs-repositories` because `start.sh` already made a symbolic link for you.
  37. - **Run User**: keep it as default value `git` because `start.sh` already setup a user with name `git`.
  38. - **Domain**: fill in with Docker container IP(e.g. `192.168.99.100`). But if you want to access your Gogs instance from a different physical machine, please fill in with the hostname or IP address of the Docker host machine.
  39. - **SSH Port**: Use the exposed port from Docker container. For example, your SSH server listens on `22` inside Docker, but you expose it by `10022:22`, then use `10022` for this value.
  40. - **HTTP Port**: Use port you want Gogs to listen on inside Docker container. For example, your Gogs listens on `3000` inside Docker, and you expose it by `10080:3000`, but you still use `3000` for this value.
  41. - **Application URL**: Use combination of **Domain** and **exposed HTTP Port** values(e.g. `http://192.168.99.100:10080/`).
  42. Full documentation of settings can be found [here](http://gogs.io/docs/advanced/configuration_cheat_sheet.html).
  43. ## Upgrade
  44. :exclamation::exclamation::exclamation:<span style="color: red">**Make sure you have volumed data to somewhere outside Docker container**</span>:exclamation::exclamation::exclamation:
  45. Steps to upgrade Gogs with Docker:
  46. - `docker pull gogs/gogs`
  47. - `docker stop gogs`
  48. - `docker rm gogs`
  49. - Finally, create container as the first time and don't forget to do same volume and port mapping.
  50. ## Known Issues
  51. - `.dockerignore` seems to be ignored during Docker Hub Automated build