James Brink
James Brink
the docker-compose now uses the pre-built image from https://hub.docker.com/r/utensils/lobsters but it can be built locally use `make`. I will update the Readme tomorrow with the information.
With these new updates, you could pull try the following docker-compose ```yaml version: '2.1' services: database: image: mariadb environment: - MYSQL_ROOT_PASSWORD=password - MYSQL_DATABASE=lobsters healthcheck: test: "/usr/bin/mysql --user=root --password=password --execute \"SHOW...
@chovy there are ENV variables setup for using SMTP From the Dockerfile ```Dockerfile SMTP_HOST="127.0.0.1" \ SMTP_PORT="25" \ SMTP_STARTTLS_AUTO="true" \ SMTP_USERNAME="lobsters" \ SMTP_PASSWORD="lobsters" ``` So given the previous docker-compose example you...
Ah I see this, i think the renamed the file upstream. I will fix this now
if you pull the newest docker image `docker pull utensils/lobsters:latest` then start it up again it should be fixed. I did notice it throws an Nil Class error, but I...
@chovy this is the NilClass error i mentioned earlier, i think you can safely ignore it. once you have stories and comments it stops erroring. I think they really just...
> Also I read that docker-compose will look for a .env file in the root so that would be a better way of adding environment variables. I will look into...