services: shot-crafter: image: gitea.danielarroyo.cl/proyectos/shot-crafter-calculator:latest container_name: shot-crafter restart: unless-stopped ports: - "8080:8080" environment: QUARKUS_HTTP_HOST: 0.0.0.0 QUARKUS_HTTP_PORT: 8080 QUARKUS_DATASOURCE_JDBC_URL: jdbc:h2:file:/work/data/shots;DB_CLOSE_DELAY=-1 APP_AUTH_COOKIE_SECURE: "false" APP_AUTH_COOKIE_NAME: auth-token volumes: - shot-crafter-data:/work/data healthcheck: test: ["CMD", "curl", "-fsS", "--max-time", "5", "http://localhost:8080/q/health/live"] interval: 30s timeout: 5s retries: 3 start_period: 30s volumes: shot-crafter-data: name: shot-crafter-data