20 lines
390 B
YAML
20 lines
390 B
YAML
|
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
|
||
|
|
||
|
|