diff --git a/docs/Installation/macos.md b/docs/Installation/macos.md index 72a3336..47a6ca3 100644 --- a/docs/Installation/macos.md +++ b/docs/Installation/macos.md @@ -11,7 +11,7 @@ MacOS will throw errors about being unable to access the docker socket (`/var/ru Here's an example docker-compose: ```yaml title="docker-compose.yml" -version: '3' +version: '3.9' services: yacht: container_name: yacht @@ -26,9 +26,10 @@ services: - PUID=0 - PGID=0 - COMPOSE_DIR=/compose - image: selfhostedpro/yacht + image: selfhostedpro/yacht:latest volumes: yacht: ``` +``` *Please note that the above docker-compose sets up a compose directory for managing compose projects. You'll need to change the paths to fit your system or remove these if you're not going to be using docker-compose* diff --git a/docs/Installation/yacht.md b/docs/Installation/yacht.md index d19690f..7e9703a 100644 --- a/docs/Installation/yacht.md +++ b/docs/Installation/yacht.md @@ -38,13 +38,13 @@ The following is an example docker-compose.yml file to deploy Yacht: ```yaml title="docker-compose.yml" --- -version: "3" +version: "3.9" services: yacht: container_name: yacht restart: unless-stopped ports: - - 8000:8000 + - "8000:8000" volumes: - yacht:/config - /var/run/docker.sock:/var/run/docker.sock @@ -53,6 +53,7 @@ services: volumes: yacht: ``` +``` ## via DockSTARTer