Skip to content

Commit

Permalink
Only bind localhost for all services
Browse files Browse the repository at this point in the history
  • Loading branch information
botimer committed Nov 8, 2023
1 parent 2e5f488 commit 2c1c365
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ services:
UID: ${UID:-1000}
GID: ${GID:-1000}
ports:
- "2300:2300"
- "127.0.0.1:2300:2300"
depends_on:
mariadb:
condition: "service_healthy"
Expand Down Expand Up @@ -39,7 +39,7 @@ services:
default:
aliases: ["db"]
ports:
- "3306:3306"
- "127.0.0.1:3306:3306"
volumes:
- mariadb_data:/var/lib/mysql
- ./db:/sql
Expand All @@ -63,7 +63,7 @@ services:
dockerfile: ./apache/Dockerfile
target: server
ports:
- "8888:80"
- "127.0.0.1:8888:80"
hostname: "www.lauth.local"
networks:
default:
Expand Down

0 comments on commit 2c1c365

Please sign in to comment.