Skip to content

Commit

Permalink
Update docker-compose for local dev
Browse files Browse the repository at this point in the history
  • Loading branch information
Mark-Powers committed May 17, 2024
1 parent e2cf481 commit 947ab15
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,15 +15,15 @@ services:
- ./media:/media
- static:/static
ports:
- "127.0.0.1:8890:${PORTAL_PORT}"
- "8890:${PORTAL_PORT}"
entrypoint: ["python3", "manage.py"]
command: ["runserver", "0.0.0.0:${PORTAL_PORT}"]
depends_on:
- mysql
referenceapi:
image: docker.chameleoncloud.org/referenceapi:latest
ports:
- "127.0.0.1:8891:8000"
- "8891:8000"
mysql:
image: mariadb:10
volumes:
Expand All @@ -39,11 +39,11 @@ services:
MYSQL_USER: ${DB_USER}
MYSQL_PASSWORD: ${DB_PASSWORD}
ports:
- "127.0.0.1:3306:3306"
- "3306:3306"
phpmyadmin:
image: phpmyadmin/phpmyadmin
ports:
- "127.0.0.1:8889:80"
- "8889:80"
environment:
- PMA_HOST=mysql
- PMA_PORT=3306
Expand Down Expand Up @@ -71,12 +71,12 @@ services:
volumes:
- .:/project
ports:
- "127.0.0.1:9000:9000"
- "9000:9000"
mail:
image: mailhog/mailhog:latest
restart: always
ports:
- "127.0.0.1:8025:8025"
- "8025:8025"

volumes:
static:

0 comments on commit 947ab15

Please sign in to comment.