We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d5def17 commit 938fff8Copy full SHA for 938fff8
Dockerfile
@@ -10,6 +10,6 @@ RUN chown -R www-data:www-data /opt/app
10
COPY requirements.txt .
11
RUN pip install --no-cache-dir -r requirements.txt
12
COPY . .
13
-EXPOSE 8020
+EXPOSE 8080
14
STOPSIGNAL SIGTERM
15
CMD ["/opt/app/start-server.sh"]
docker-compose.yml
@@ -4,7 +4,7 @@ services:
4
app:
5
image: staeff/martordemo
6
ports:
7
- - 8020:8020
+ - 8080:8080
8
environment:
9
DJANGO_SUPERUSER_USERNAME: ${DJANGO_SUPERUSER_USERNAME:-admin}
DJANGO_SUPERUSER_PASSWORD: ${DJANGO_SUPERUSER_PASSWORD:-t0ps3cr3t}
nginx.default
@@ -1,7 +1,7 @@
1
# nginx.default
2
3
server {
- listen 8020;
+ listen 8080;
server_name example.org;
location / {
0 commit comments