Fix networks

This commit is contained in:
Micke Nordin 2023-03-20 09:38:45 +01:00
parent 03808354f3
commit 3c1ee2ba1d
Signed by untrusted user: Micke
GPG key ID: 0DA0A7A5708FE257
2 changed files with 15 additions and 2 deletions

View file

@ -13,9 +13,20 @@ services:
command: redis-server /data/redis.conf --loglevel verbose
restart: always
networks:
<%- if @environment == 'test' -%>
- proxysql_proxysql
<%- else %>
- mariadb-<%= @customer %>_<%= @customer %>
<% end -%>
networks:
mariadb-<%= @customer %>_<%= @customer %>:
external: true
<%- if @environment == 'test' -%>
proxysql_proxysql:
external: true
<%- else %>
mariadb-<%= @customer %>_<%= @customer %>:
external: true
<% end -%>

View file

@ -16,9 +16,10 @@ services:
- <%= @rclone_conf_path %>:/rclone.conf
networks:
- default
- mariadb-<%= @customer %>_<%= @customer %>
<%- if @environment == 'test' -%>
- proxysql_proxysql
<%- else %>
- mariadb-<%= @customer %>_<%= @customer %>
<% end -%>
dns:
- 89.46.20.75
@ -33,6 +34,7 @@ networks:
<%- if @environment == 'test' -%>
proxysql_proxysql:
external: true
<% end -%>
<%- else %>
mariadb-<%= @customer %>_<%= @customer %>:
external: true
<% end -%>