diff --git a/docker/README.md b/docker/README.md new file mode 100644 index 000000000..15ff9d930 --- /dev/null +++ b/docker/README.md @@ -0,0 +1,9 @@ +### How to run with docker-compose +1. Edit config file and after that fix permissions with +``` +sudo chown -R 999:999 webconf.yaml +``` +2. Start SDK with +``` +docker-compose up -d +``` diff --git a/docker/docker-compose.yml b/docker/docker-compose.yml new file mode 100644 index 000000000..ad8026074 --- /dev/null +++ b/docker/docker-compose.yml @@ -0,0 +1,9 @@ +version: '3' +services: + websdk: + image: vshyba/websdk + ports: + - '5279:5279' + - '5280:5280' + volumes: + - ./webconf.yaml:/webconf.yaml