I used a dockerfile to deploy Invoice Ninja,but I am unable to access the Invoice Ninja page。
I attempt to visit the url: http://ninja.example.de:8080/, but the content is the Caddy page.
docker-compose.yml
version: '3.7'
services:
server:
image: caddy:alpine
restart: always
environment:
- APP_URL=http://ninja.example.de
volumes:
# Vhost configuration
#- ./config/caddy/Caddyfile:/etc/caddy/Caddyfile
- ./public:/var/invoiceninja/public
- ./storage:/var/invoiceninja/storage
depends_on:
- app
# Run webserver nginx on port 80
# Feel free to modify depending what port is already occupied
ports:
- "8080:80"
# - "443:443"
networks:
- invoiceninja
app:
image: invoiceninja/invoiceninja
restart: always
environment:
- APP_URL=ninja.example.de
- APP_KEY=base64:Iczfntb0PgJImdMW6PxMDeHi/v/h82yKv5xeYX3QvpU=
- MULTI_DB_ENABLED=false
- DB_HOST1=db
volumes:
- ./public:/var/invoiceninja/public
- ./storage:/var/invoiceninja/storage
depends_on:
- db
networks:
- invoiceninja
db:
image: mysql:5
restart: always
environment:
- MYSQL_ROOT_PASSWORD=mypassword
- MYSQL_USER=ninja
- MYSQL_PASSWORD=ninja
- MYSQL_DATABASE=db-ninja-01
volumes:
- ./mysql/data:/var/lib/mysql
networks:
- invoiceninja
# cron:
# cron is commented out by me
volumes:
mysql-data:
public:
storage:
networks:
invoiceninja:
the docker-compose logs result: I cann't see the error
Just had this problem. You have to update a line in the Caddyfile to:
I did that by uncommenting this line and editing the file:
Now, I'm using Docker for Windows and it kept crashing saying I'm trying to find a folder to a file or vice-versa. So I just made the file myself and copied the contents from the container.
FYI, my original/default file looked like this: