Article 5DWEC What is the web address of isotop mail after starting?

What is the web address of isotop mail after starting?

by
shams
from LinuxQuestions.org on (#5DWEC)
I installed the isotope-mail, and changed the ports of isotope-mail/deployment-examples/docker-compose.yml as this:
Code:$ cat docker-compose.yml
version: '3'

services:
reverse-proxy:
image: traefik:1.7
command: --api --docker
ports:
- "8084:80"
- "8088:8088"
volumes:
- /var/run/docker.sock:/var/run/docker.sock

isotope-server:
image: marcnuri/isotope:server-latest
ports:
- "9010:9010"
labels:
- traefik.backend=isotope-server
- "traefik.frontend.rule=PathPrefixStrip:/api/"

isotope-client:
image: marcnuri/isotope:client-latest
ports:
- "8081:8081"
labels:
- traefik.backend=isotope-client
- "traefik.frontend.rule=PathPrefixStrip:/"i run this command in the isotope-mail/deployment-examples to start the isotope webmail:
Code:docker-compose pull && docker-compose up --force-recreate
Pulling reverse-proxy ... done
Pulling isotope-server ... done
Pulling isotope-client ... done
Building with native build. Learn about native build in Compose here: https://docs.docker.com/go/compose-native-build/
Removing deployment-examples_reverse-proxy_1
Removing deployment-examples_isotope-server_1
Removing deployment-examples_isotope-client_1
.....
and some other more stuff and the last lines:
isotope-server_1 | 2021-02-07 15:42:57.584 INFO 1 --- [ t main] o.s.j.e.a.AnnotationMBeanExporter : Registering beans for JMX exposure on startup
isotope-server_1 | 2021-02-07 15:42:57.647 INFO 1 --- [ main] o.s.b.w.embedded.tomcat.TomcatWebServer : Tomcat started on port(s): 9010 (http) with context path ''
isotope-server_1 | 2021-02-07 15:42:57.653 INFO 1 --- [ main] c.m.isotope.api.IsotopeApiApplication : Started IsotopeApiApplication in 6.221 seconds (JVM running for 6.943)I opne the above ports in iptables, and when i checked the iptables rules the docker as well added these rules to the ipables:
Code:-A DOCKER -d 172.18.0.2/32 ! -i br-c1641b64fd07 -o br-c1641b64fd07 -p tcp -m tcp --dport 8088 -j ACCEPT
-A DOCKER -d 172.18.0.2/32 ! -i br-c1641b64fd07 -o br-c1641b64fd07 -p tcp -m tcp --dport 80 -j ACCEPT
-A DOCKER -d 172.18.0.3/32 ! -i br-c1641b64fd07 -o br-c1641b64fd07 -p tcp -m tcp --dport 8081 -j ACCEPT
-A DOCKER -d 172.18.0.4/32 ! -i br-c1641b64fd07 -o br-c1641b64fd07 -p tcp -m tcp --dport 9010 -j ACCEPTi am running my own apache web server, and localhost is pointed to my document root, in the documents of isotope-mail written after running the above commands open the localhost this will open the isotope web mail, but in my case the localhost opening my document root, i do not know which address will open the isotope webmail?latest?d=yIl2AUoC8zA latest?i=aCU1ZiXd4FU:ZvoyLYaYJvI:F7zBnMy latest?i=aCU1ZiXd4FU:ZvoyLYaYJvI:V_sGLiP latest?d=qj6IDK7rITs latest?i=aCU1ZiXd4FU:ZvoyLYaYJvI:gIN9vFwaCU1ZiXd4FU
External Content
Source RSS or Atom Feed
Feed Location https://feeds.feedburner.com/linuxquestions/latest
Feed Title LinuxQuestions.org
Feed Link https://www.linuxquestions.org/questions/
Reply 0 comments