Browse Source

Update docker repo location in docs and docker-compose.yml

tags/v2.9.0-rc1
erin 2 years ago
parent
commit
fba41a26df
2 changed files with 2 additions and 2 deletions
  1. 1
    1
      distrib/docker/docker-compose.yml
  2. 1
    1
      docs/MANUAL.md

+ 1
- 1
distrib/docker/docker-compose.yml View File

2
 
2
 
3
 services:
3
 services:
4
   ergo:
4
   ergo:
5
-    image: ergochat/ergo:latest
5
+    image: ghcr.io/ergochat/ergo:stable
6
     ports:
6
     ports:
7
       - "6667:6667/tcp"
7
       - "6667:6667/tcp"
8
       - "6697:6697/tcp"
8
       - "6697:6697/tcp"

+ 1
- 1
docs/MANUAL.md View File

137
 
137
 
138
 1. Pull the latest version of Ergo: `docker pull oragono/oragono:latest`
138
 1. Pull the latest version of Ergo: `docker pull oragono/oragono:latest`
139
 1. Create a volume for persistent data: `docker volume create oragono-data`
139
 1. Create a volume for persistent data: `docker volume create oragono-data`
140
-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`
140
+1. Run the container, exposing the default ports: `docker run -d --name oragono -v oragono-data:/ircd-data -p 6667:6667 -p 6697:6697 ghcr.io/ergochat/ergo:stable`
141
 
141
 
142
 For further information and a sample docker-compose file see the separate [Docker documentation](https://github.com/oragono/oragono/blob/master/distrib/docker/README.md).
142
 For further information and a sample docker-compose file see the separate [Docker documentation](https://github.com/oragono/oragono/blob/master/distrib/docker/README.md).
143
 
143
 

Loading…
Cancel
Save