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-development.yml

25 lines
635 B

version: "2"
services:
# I have a feeling we can get rid of this, and just use one docker-compose.yml, and just set a ENV var if
# we want dev mode (just gives a docker shell) or not.
backend:
build: ./backend/dev-docker
image: dgtlmoon/changedetection.io:0.1-dev
container_name: changedetection.io-dev
volumes:
- ./backend:/app
- ./datastore:/datastore
environment:
- PYTHONUNBUFFERED=1 #https://stackoverflow.com/questions/58701233/docker-logs-erroneously-appears-empty-until-container-stops
ports:
- "127.0.0.1:5000:5000"
networks:
- changenet
networks:
changenet: