This commit is contained in:
2022-08-18 15:42:27 +03:00
commit 2157306a4e
22 changed files with 1015 additions and 0 deletions

24
docker-compose.yaml Normal file
View File

@@ -0,0 +1,24 @@
version: "3.9"
services:
pwss:
build:
context: docker-pwss
args:
- UUID
- TZ
image: pwss
volumes:
- ./data/:/data/
environment:
- UUID
- SESSION_EXPIRY
- SECRET_KEY
- DATABASE
- WORKERS
- CONFIG_FOLDER
- STATIC_FOLDER
- LIMITER_SHARE
ports:
- "${EXPOSE}:5000"
restart: "unless-stopped"