krish512/ReviveDockerImage

Running image with traefik reverse proxy

Rashidsalim opened this issue · 0 comments

Hi,
Here is my docker-compose file which I'm currently using to run your image.

version: '3'
networks:
  proxy:
    external: true
services:
  revive:
    build:
      context: revive/
    restart: always
    volumes:
      - revive_vm:/var/www/html
    labels:
      - traefik.backend=revive
      - traefik.frontend.rule=Host:ads.example.com
      - traefik.docker.network=proxy
      - traefik.enable=true
      - traefik.port=80
    networks:
      - proxy
volumes:
  revive_vm:
    driver: local

The image runs but after installation I get this error
screenshot_7
And after pressing continue, the adserver seems broken.
screenshot_8
I do not see any logs in the directory that can help me debug the issue. This only occurs when I'm installing with traefik but if I run the image with docker run and no subdomain, it works perfectly. Would really appreciate some assistance. I suspect it could be a permissions issue with the plugin directory which I have give write access but it doesn't seem to solve it.