Skip to content

Commit 938fff8

Browse files
committed
Switch exposed docker port to 8080
1 parent d5def17 commit 938fff8

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,6 @@ RUN chown -R www-data:www-data /opt/app
1010
COPY requirements.txt .
1111
RUN pip install --no-cache-dir -r requirements.txt
1212
COPY . .
13-
EXPOSE 8020
13+
EXPOSE 8080
1414
STOPSIGNAL SIGTERM
1515
CMD ["/opt/app/start-server.sh"]

docker-compose.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ services:
44
app:
55
image: staeff/martordemo
66
ports:
7-
- 8020:8020
7+
- 8080:8080
88
environment:
99
DJANGO_SUPERUSER_USERNAME: ${DJANGO_SUPERUSER_USERNAME:-admin}
1010
DJANGO_SUPERUSER_PASSWORD: ${DJANGO_SUPERUSER_PASSWORD:-t0ps3cr3t}

nginx.default

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# nginx.default
22

33
server {
4-
listen 8020;
4+
listen 8080;
55
server_name example.org;
66

77
location / {

0 commit comments

Comments
 (0)