From 4034b74debe3a814ee8fae1aff761f8b18e87ef4 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Marw=C3=A2ne?= Date: Wed, 3 Feb 2021 21:07:31 +0100 Subject: [PATCH] Update README.md --- docs/setup/README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/docs/setup/README.md b/docs/setup/README.md index 8af7eee2..003acc6d 100644 --- a/docs/setup/README.md +++ b/docs/setup/README.md @@ -24,15 +24,15 @@ Via `docker-compose`: version: "3" services: app: - image: 'jc21/nginx-proxy-manager:latest' + image: "jc21/nginx-proxy-manager:latest" restart: always ports: # Public HTTP Port: - - '80:80' + - "80:80" # Public HTTPS Port: - - '443:443' + - "443:443" # Admin Web Port: - - '81:81' + - "81:81" environment: # These are the settings to access your db DB_MYSQL_HOST: "db" @@ -44,7 +44,7 @@ services: # and remove all DB_MYSQL_* lines above # DB_SQLITE_FILE: "/data/database.sqlite" # Uncomment this if IPv6 is not enabled on your host - # DISABLE_IPV6: 'true' + # DISABLE_IPV6: "true" volumes: - ./data:/data - ./letsencrypt:/etc/letsencrypt @@ -54,10 +54,10 @@ services: image: jc21/mariadb-aria:10.4 restart: always environment: - MYSQL_ROOT_PASSWORD: 'npm' - MYSQL_DATABASE: 'npm' - MYSQL_USER: 'npm' - MYSQL_PASSWORD: 'npm' + MYSQL_ROOT_PASSWORD: "npm" + MYSQL_DATABASE: "npm" + MYSQL_USER: "npm" + MYSQL_PASSWORD: "npm" volumes: - ./data/mysql:/var/lib/mysql ``` @@ -143,7 +143,7 @@ Once you've created your configuration file you can mount it to `/app/config/pro [...] services: app: - image: 'jc21/nginx-proxy-manager:latest' + image: "jc21/nginx-proxy-manager:latest" [...] volumes: - ./config.json:/app/config/production.json