mirror of
https://github.com/LemmyNet/lemmy
synced 2024-11-10 06:54:12 +00:00
Fix ports used by docker (#3012)
Co-authored-by: Dessalines <dessalines@users.noreply.github.com>
This commit is contained in:
parent
5f92125e44
commit
932e65c16d
2 changed files with 3 additions and 3 deletions
|
@ -33,5 +33,4 @@ RUN apk add libpq
|
|||
# Copy resources
|
||||
COPY --from=builder /app/lemmy_server /app/lemmy
|
||||
|
||||
EXPOSE 8536
|
||||
CMD ["/app/lemmy"]
|
||||
|
|
|
@ -16,8 +16,9 @@ services:
|
|||
- lemmyexternalproxy
|
||||
ports:
|
||||
# actual and only port facing any connection from outside
|
||||
# Note, change the left number if port 80 is already in use on your system (or you want to run a reverse proxy outside this config)
|
||||
- "80:80"
|
||||
# Note, change the left number if port 1236 is already in use on your system
|
||||
# You could use port 80 if you won't use a reverse proxy
|
||||
- "1236:1236"
|
||||
- "8536:8536"
|
||||
volumes:
|
||||
- ./nginx.conf:/etc/nginx/nginx.conf:ro,Z
|
||||
|
|
Loading…
Reference in a new issue