Skip to content

Commit

Permalink
Merge branch 'release/v1.1.0'
Browse files Browse the repository at this point in the history
  • Loading branch information
davidecaruso committed May 10, 2020
2 parents bdc50e3 + e032761 commit 46abdc8
Show file tree
Hide file tree
Showing 3 changed files with 26 additions and 2 deletions.
7 changes: 7 additions & 0 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
FROM python:3

COPY . .

RUN pip3 install --no-cache-dir -r requirements.txt

CMD [ "python3", "main.py" ]
13 changes: 11 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,17 @@
## Install
```shell script
git clone git@github.com:davidecaruso/wazowski.git && cd wazowski
cp .env.example .env && vi .env
git clone git@github.com:davidecaruso/wazowski.git
cd wazowski && cp .env.example .env && vi .env
```

## Usage
#### With Docker
```shell script
docker-compose up --build -d
```
#### With Python3
```shell script
pip3 install --no-cache-dir -r requirements.txt
python3 main.py
```
Expand Down
8 changes: 8 additions & 0 deletions docker-compose.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
version: "3.7"

services:
wazowski:
container_name: wazowski
network_mode: host
restart: always
build: .

0 comments on commit 46abdc8

Please sign in to comment.