Hello,
I’m running invoiceplane for 2 years now in a docker container on docker desktop on a windows machine.
I have no other docker experience or knowledge.
The windows machine now installed updates and rebooted .
After that docker desktop wasn t starting anymore. I removed it and installed the latest version of docker desktop 4.0.1.
Docker desktop is running now. Before I started invoiceplane with the command :
docker-compose up
When I now try this I get the error :
PS D:\> docker-compose up
no such service: _invoiceplane_1
This is my docker-compose.yml file :
version: '2'
services:
mysql:
restart: always
image: sameersbn/mysql:5.7.24
environment:
- DB_USER=invoiceplane
- DB_PASS=password
- DB_NAME=invoiceplane_db
volumes:
- D:\INVOICEPLANE\mysql:/var/lib/mysql
invoiceplane:
restart: always
image: sameersbn/invoiceplane:1.5.9-2
command: app:invoiceplane
environment:
- DEBUG=false
- TZ=Asia/Kolkata
- DB_TYPE=mysqli
- DB_HOST=mysql
- DB_USER=invoiceplane
- DB_PASS=password
- DB_NAME=invoiceplane_db
- INVOICEPLANE_URL=http://10.0.0.113:10080
- INVOICEPLANE_PROXY_IPS=
- INVOICEPLANE_BACKUPS_EXPIRY=0
depends_on:
- mysql
volumes:
- D:\INVOICEPLANE\invoiceplane:/var/lib/invoiceplane
nginx:
restart: always
image: sameersbn/invoiceplane:1.5.9-2
command: app:nginx
environment:
- INVOICEPLANE_PHP_FPM_HOST=invoiceplane
- INVOICEPLANE_PHP_FPM_PORT=9000
depends_on:
- invoiceplane
ports:
- "10080:80"
volumes_from:
- invoiceplane
Can somebody help me to get the invoicplane container running again without losing my data ?
I have no idea what the problem is
Also no idea what settings are maintained after removing and installing docker desktop.
Thanks,