ResourcePackUpdater/docker-compose.yml

20 lines
390 B
YAML
Raw Normal View History

2021-06-20 03:05:30 +00:00
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