version: '3' services: accweb: image: git.tgj.services/thatguyjack/acc-web:latest container_name : accweb-server restart: unless-stopped ports: - 8080:8080 volumes: # - accweb:/accweb # - acccerts:/sslcerts - ./accserver:/accserver environment: ACCWEB_HOST: 0.0.0.0:8080 ACCWEB_ENABLE_TLS: "false" ACCWEB_ADMIN_PASSWORD: weakadminpassword ACCWEB_MOD_PASSWORD: weakmodpassword ACCWEB_RO_PASSWORD: weakropassword ACCWEB_LOGLEVEL: info ACCWEB_CORS: "*"