mmalessa / dtdm

Dockerized Tasmota Device Manager
MIT License
0 stars 0 forks source link

Docker installation instructions #1

Open Maximus48p opened 2 years ago

Maximus48p commented 2 years ago

Please help..... not able to install correctly...

My docker-compose:

`version: '3.3' services: application: image: https://github.com/mmalessa/dtdm/blob/master/ container_name: ${APP_NAME}-app restart: on-failure working_dir: /config volumes:

volumes: config: name: ${APP_NAME}-config

networks: application: name: ${APP_NAME}-network`

It seems the location of the image is fault.

Or should i copy the Image file to a local folder? Please help.

Thank you in advanced.

Max

mmalessa commented 2 years ago

Hi!

Thank you for 'Issue'. In the meantime, I will describe it in more detail in the README. The repository does not provide any docker image, but a Dockerfile (and others) that will build it locally for you.

All you need to do with this project is:

  1. git clone https://github.com/mmalessa/dtdm.git
  2. cd dtdm
  3. make build
  4. make up

Everything will start automatically and you will have the Tasmota Device Manager GUI on http://localhost:5800 :-)

If you want to create it by yourself - look at docker-compose.yaml, Makefile, Dockerfile and make appropriate modifications. All the magic is in Dockerfile ;-)

Good luck! :-) Marcin