tiran133
tiran133
In case someone needs this still. You need to build your own docker image with either `ENV VITE_APP_WS_SERVER_URL=http://127.0.0.1:3002` the Dockerfile OR change it in `.env.production` This is how i did...
Since the docker compose file exposes the ports to the host via the ports section. So there are available on localhost and on the host IP ```yaml ports: - "3000:80"...
No this should be fine as long as you only change the first part of the port in the composer file ```yaml ports: - "10000:80" ``` If you want to...
I did the same in my project and it works fine. I extend my fragment as follow SlidingMenuListFragment extends SherlockListFragment I'm using the sherlockactionbar So i extend SherlockListFragment and not...