diff --git a/docker-compose.production.yaml b/docker-compose.production.yaml new file mode 100644 index 0000000..ac3c30e --- /dev/null +++ b/docker-compose.production.yaml @@ -0,0 +1,11 @@ +# docker-compose.yml +services: + app: + build: + context: . + dockerfile: Dockerfile + ports: + - "127.0.0.1:8000:8000" + environment: + - APP_ENV=production + - DB_CONNECTION=sqlite diff --git a/docker-compose.yaml b/docker-compose.yaml index 9d15bee..f497588 100644 --- a/docker-compose.yaml +++ b/docker-compose.yaml @@ -6,8 +6,6 @@ services: dockerfile: Dockerfile ports: - "8000:8000" - #volumes: - #- .:/var/www/html environment: - APP_ENV=production - DB_CONNECTION=sqlite