This commit is contained in:
Sezer Bozkır 2020-02-24 02:13:52 +03:00 committed by GitHub
commit abf05ece26
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
3 changed files with 20 additions and 0 deletions

9
Dockerfile Normal file
View File

@ -0,0 +1,9 @@
FROM python:3
RUN pip install updog
ADD serve /serve
EXPOSE 9090
CMD updog -d serve

10
docker-compose.yml Normal file
View File

@ -0,0 +1,10 @@
version: '3'
services:
updog:
container_name: updog
build: .
volumes:
- "./serve:/serve"
ports:
- "9090:9090"

1
serve/first_file Normal file
View File

@ -0,0 +1 @@
This file added for first connection test.