You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
changedetection.io/docker-compose.yml

27 lines
526 B

version: "2"
services:
backend:
build: .
image: dgtlmoon/changedetection.io:0.1
container_name: changedetection.io
volumes:
- ./backend:/app
- ./datastore:/datastore
# autoreload not working :(
environment:
- FLASK_ENV=development
- PYTHONUNBUFFERED=1 #https://stackoverflow.com/questions/58701233/docker-logs-erroneously-appears-empty-until-container-stops
ports:
- "127.0.0.1:5000:5000"
networks:
- changenet
restart: always
networks:
changenet: