Bladeren bron

Add docker section to the manual

tags/v2.0.0-rc1
Chris Smith 4 jaren geleden
bovenliggende
commit
8228cb4b0d
Getekend door: Chris Smith <chris@chameth.com> GPG sleutel-ID: 3A2D4BBDC4A3C9A9
1 gewijzigde bestanden met toevoegingen van 9 en 0 verwijderingen
  1. 9
    0
      docs/MANUAL.md

+ 9
- 0
docs/MANUAL.md Bestand weergeven

@@ -124,6 +124,15 @@ To start the server, type `./oragono run` and hit enter, and the server should b
124 124
 If you're using Arch Linux, you can also install the [`oragono` package](https://aur.archlinux.org/packages/oragono/) from the AUR.
125 125
 
126 126
 
127
+## Docker
128
+
129
+1. Pull the latest version of Oragono: `docker pull oragono/oragono:latest`
130
+1. Create a volume for persistent data: `docker volume create oragono-data`
131
+1. Run the container, exposing the default ports: `docker run -d --name oragono -v oragono-data:/ircd-data -p 6667:6667 -p 6697:6697 oragono/oragono:latest`
132
+
133
+For further information and a sample docker-compose file see the separate [Docker documentation](https://github.com/oragono/oragono/blog/master/distrib/docker/README.md).
134
+
135
+
127 136
 ## Running oragono as a service on Linux
128 137
 
129 138
 The recommended way to operate oragono as a service on Linux is via systemd. This provides a standard interface for starting, stopping, and rehashing (via `systemctl reload`) the service. It also captures oragono's loglines (sent to stderr in the default configuration) and writes them to the system journal.

Laden…
Annuleren
Opslaan