Skip to content

Commit

Permalink
Update docker-compose.yaml
Browse files Browse the repository at this point in the history
  • Loading branch information
Plerx2493 authored Apr 22, 2024
1 parent 9657c11 commit 7238f4b
Showing 1 changed file with 11 additions and 4 deletions.
15 changes: 11 additions & 4 deletions docker-compose.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,8 @@ services:
- MADS_DM_PROXY_CHANNEL_ID=0
- MADS_DEEPL_API_KEY=<API-Key>
networks:
- mads_internal
- mads_internal:
ipv4_address: 10.6.0.2
depends_on:
- mads-db-core
- mads-db-quartz
Expand All @@ -28,7 +29,8 @@ services:
volumes:
- data_mads_core:/var/lib/mysql
networks:
- mads_internal
- mads_internal:
ipv4_address: 10.6.0.3
hostname: mads-db-core
restart: unless-stopped

Expand All @@ -42,16 +44,21 @@ services:
volumes:
- data_mads_quartz:/var/lib/mysql
networks:
- mads_internal
- mads_internal:
ipv4_address: 10.6.0.4
hostname: mads-db-quartz
restart: unless-stopped

networks:
mads_internal:
driver: bridge
ipam:
config:
- subnet: 10.6.0.0/16
gateway: 10.6.0.1

volumes:
data_mads_quartz:
driver: local
data_mads_core:
driver: local
driver: local

0 comments on commit 7238f4b

Please sign in to comment.