diff options
Diffstat (limited to '')
-rw-r--r-- | docker/README.md | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/docker/README.md b/docker/README.md index ec7f89d..9ce982f 100644 --- a/docker/README.md +++ b/docker/README.md @@ -41,8 +41,6 @@ Compose Here's an example docker-compose.yml file: - version: '3' - services: cgitize: environment: @@ -50,13 +48,13 @@ Here's an example docker-compose.yml file: SCHEDULE: '0 */3 * * *' # Set CGITIZE_{GITHUB,BITBUCKET,GITLAB}_{USERNAME,TOKEN} variables # here or in the config file. - image: egortensin/cgitize:5 + image: egortensin/cgitize:6 restart: unless-stopped volumes: - ./example.toml:/etc/cgitize/cgitize.toml:ro - /srv/volumes/cgitize:/mnt/cgitize frontend: - image: egortensin/cgitize-frontend:5 + image: egortensin/cgitize-frontend:6 ports: - '127.0.0.1:80:80' restart: unless-stopped |