Developing Headless Systems
Image
Why
Create Environment
proxy:
image: dockware/proxy:latest
container_name: proxy
ports:
- 80:80
- 443:443
volumes:
- "../proxy/frontend.conf:/etc/nginx/conf.d/frontend.conf:ro"
- "../proxy/shopware.conf:/etc/nginx/conf.d/shopware.conf:ro"
- "../proxy/tcp.conf:/etc/nginx/conf.stream.d/tcp.conf:ro"
frontend:
image: dockware/web:latest
container_name: frontend
volumes:
- "./src:/var/www/html"
environment:
- NODE_VERSION=22
shopware:
image: dockware/shopware:6.6.10.2
container_name: shopwareCreate Frontend Application
Where to go from here?
Last updated
Was this helpful?