-
I'm trying to determine if I can use Bref for a codeigniter 3 app I have. I wanted to get things up and running quickly, so I looked up the local dev instructions and set up the docker container: services:
app:
image: bref/arm-php-80-fpm-dev:2
volumes:
- ./app:/var/task
ports:
- 8000:8080
environment:
HANDLER: index.php
# Assets will be served from this directory
DOCUMENT_ROOT: resources As implied by the volume mount, the root of the codeigniter project is in the
I There's no logs of any kind in the app container after the thing comes up, either:
I deployed the app to AWS with |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 1 reply
-
There seem to be a mistake on that line:
The second port is |
Beta Was this translation helpful? Give feedback.
There seem to be a mistake on that line:
The second port is
8080
instead of8000
.