Skip to content

Commit

Permalink
Don't use external ports
Browse files Browse the repository at this point in the history
  • Loading branch information
acetousk committed Aug 31, 2024
1 parent 3e8b85e commit 2f6a315
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions docker-compose.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,8 @@ services:
command: conf=conf/MoquiProductionConf.xml
restart: always
ports:
- "127.0.0.1:80:80"
- "127.0.0.1:443:443"
- "80:80"
- "443:443"
links:
- moqui-database
- moqui-search
Expand Down Expand Up @@ -48,7 +48,7 @@ services:
container_name: moqui-database
restart: always
ports:
- "127.0.0.1:5432:5432"
- "5432:5432"
volumes:
- postgres_data:/var/lib/postgresql/data
environment:
Expand All @@ -61,8 +61,8 @@ services:
container_name: moqui-search
restart: always
ports:
- "127.0.0.1:9200:9200"
- "127.0.0.1:9300:9300"
- "9200:9200"
- "9300:9300"
volumes:
- opensearch_data:/usr/share/opensearch/data
environment:
Expand Down

0 comments on commit 2f6a315

Please sign in to comment.