Only bind to local ports in docker-compose.yml

This commit is contained in:
Felix Ableitner 2019-10-16 11:01:47 +02:00
parent fd7e4b3fe2
commit 7ea4eca599
3 changed files with 5 additions and 5 deletions

View File

@ -14,7 +14,7 @@ services:
context: ../../
dockerfile: docker/dev/Dockerfile
ports:
- "8536:8536"
- "127.0.0.1:8536:8536"
environment:
- LEMMY_FRONT_END_DIR=/app/dist
- DATABASE_URL=${DATABASE_URL}
@ -32,7 +32,7 @@ services:
lemmy_pictshare:
image: hascheksolutions/pictshare:latest
ports:
- "8537:80"
- "127.0.0.1:8537:80"
volumes:
- lemmy_pictshare:/usr/share/nginx/html/data
volumes:

View File

@ -14,7 +14,7 @@ services:
context: ../../
dockerfile: docker/nocross/Dockerfile
ports:
- "8536:8536"
- "127.0.0.1:8536:8536"
environment:
- LEMMY_FRONT_END_DIR=/app/dist
- DATABASE_URL=${DATABASE_URL}

View File

@ -12,7 +12,7 @@ services:
lemmy:
image: dessalines/lemmy:v0.3.0
ports:
- "8536:8536"
- "127.0.0.1:8536:8536"
environment:
- LEMMY_FRONT_END_DIR=/app/dist
- DATABASE_URL=${DATABASE_URL}
@ -30,7 +30,7 @@ services:
lemmy_pictshare:
image: hascheksolutions/pictshare:latest
ports:
- "8537:80"
- "127.0.0.1:8537:80"
volumes:
- lemmy_pictshare:/usr/share/nginx/html/data
volumes: