From 0f5a352fc66c233e311c7b25f6f626478b394c87 Mon Sep 17 00:00:00 2001 From: Kato Twofold Date: Wed, 1 Jun 2022 18:43:35 +0300 Subject: [PATCH] * Docker Compose example updated --- docker-compose.example.yaml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/docker-compose.example.yaml b/docker-compose.example.yaml index 953da95..db568c9 100644 --- a/docker-compose.example.yaml +++ b/docker-compose.example.yaml @@ -3,13 +3,13 @@ version: '3' services: freepad: # Uncomment the bellow to use the production docker image from the docker repository - # image: + image: justkato/freepad # Comment the build line if you are just looking to use a docker-compose file - build: . + # build: . # I don't recommend changing the 8080 as there would be no reason to, # simply change the 3113 port to anything you would like for the container to listen on ports: - - 3113:8080 + - 8080:8080 # This will read from your .env variables, in that file you will find the documentation as well environment: - DOMAIN_BASE