diff --git a/docker-compose.yml b/docker-compose.yml new file mode 100644 index 00000000..c6d2569f --- /dev/null +++ b/docker-compose.yml @@ -0,0 +1,13 @@ +version: "3.8" +services: + app: + build: + context: . + dockerfile: Dockerfile + image: websites-lms:latest + ports: + - "8080:80" + environment: + APP_ENV: production + APP_DEBUG: "false" + restart: unless-stopped