This is the frontend/theme component for the SOJUZ Project. It utilizes GraphQL API provided by Junction.
- Make sure that you have defiend docker network
web
if the result looks similar to this:docker network ls | grep web
you're good to continue.c3f6d40ce98a web bridge local
If not, then create the
web
networkdocker network create web
- In your
/etc/hosts
file pointdocker.local
to127.0.0.1
- Rename
.env.sample
file to.env
and maybe edit it according to your needs - Run the stack in foreground for the first time:
The output may contain vital information about what's wrong if anything
docker-compose up
- The frontend is normally proxied via traefik instance provided by the so part of sojuz project. But for development purposes it listens override on port
3000
To startup the server issue appropriate docker-compose command such as:
docker-compose up
for debug, or (for production):
docker-compose -f docker-compose.yml up -d
if everything went well it should be avaliable under http://docker.local:3000