Development of an internal social media platform with personalised dashboards for students
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

docker-compose.yml 284B

1234567891011
  1. version: '3'
  2. services:
  3. web:
  4. build: .
  5. command: bash -c "python manage.py makemigrations && python manage.py migrate && python manage.py runserver 0.0.0.0:8000"
  6. container_name: esther_kleinhenz_ba
  7. volumes:
  8. - .:/esther_kleinhenz_ba
  9. ports:
  10. - "8000:8000"