From f1aeb1544d95a68a651dad57655dd3fbb72f861d Mon Sep 17 00:00:00 2001 From: Isaac Strong Date: Fri, 12 Jun 2020 22:06:17 -0700 Subject: [PATCH] docker-compose update I edited the sample docker-compose snippet with the changes I had to make for this image to work on my Ubuntu 20.04 LTS VM. --- README.md | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index be524a5..fff9f51 100644 --- a/README.md +++ b/README.md @@ -49,12 +49,13 @@ docker run --rm -it -v /tmp/wireguard:/data -p 8080:8080 -e "WG_CONF_DIR=/data" Docker compose snippet, used for demo server ``` version: '3.6' +services: wg-gen-web-demo: image: vx3r/wg-gen-web:latest container_name: wg-gen-web-demo restart: unless-stopped - expose: - - "8080/tcp" + ports: + - "8080:8080" environment: - WG_CONF_DIR=/data - WG_INTERFACE_NAME=wg0.conf