This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
CONTAINER ID IMAGE COMMAND CREATED STATUS PORTS NAMES | |
8079ba0b3f18 wordpress:latest "docker-entrypoint.s…" 4 hours ago Up 4 hours 80/tcp wordpress_b | |
e2b3cc743086 wordpress:latest "docker-entrypoint.s…" 4 hours ago Up 4 hours 0.0.0.0:8080->80/tcp wordpress_a | |
ba5f30a31d1c mysql:5.7 "docker-entrypoint.s…" 4 hours ago Up 4 hours 33060/tcp, 0.0.0.0:3308->3306/tcp wordpress_db_b | |
6c67a60a044d mysql:5.7 "docker-entrypoint.s…" 4 hours ago Up 4 hours 33060/tcp, 0.0.0.0:3307->3306/tcp wordpress_db_a | |
268fdc66cce8 jrcs/letsencrypt-nginx-proxy-companion "/bin/bash /app/entr…" 6 hours ago Up 6 hours |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
version: "3" | |
services: | |
db_node_domain_a: | |
image: mysql:5.7 | |
volumes: | |
- db_data_mysql_a:/var/lib/mysql | |
restart: always | |
ports: | |
- $PORTS_A:3306 |