This commit is contained in:
jimmy 2021-06-20 03:05:30 +00:00
parent 371665b8f7
commit c7d41b4e78
2 changed files with 20 additions and 1 deletions

2
.gitignore vendored
View File

@ -1,6 +1,6 @@
.ssh/
id_rsa
id_rsa.pub
known_hosts
files/
data/
.vscode/

19
docker-compose.yml Normal file
View File

@ -0,0 +1,19 @@
version: '3.7'
services:
resourcepackupdater:
build: .
command: python /src/main.py
environment:
- RESOURCE_PACK_URL=git@github.com:Pixel-Hideaway/ResourcePack.git
volumes:
- ~/.ssh/:/root/.ssh:ro
env_file:
- .env
ports:
- 8080:8080
tty: true
stdin_open: true