flyer-backend/docker-compose.yml

41 lines
986 B
YAML

version: '3.3'
services:
db:
image: mysql:5.7
# restart: always
environment:
MYSQL_DATABASE: 'bij1'
# # So you don't have to use root, but you can if you like
# MYSQL_USER: 'root'
# # You can use whatever password you like
# MYSQL_PASSWORD: 'password'
# Password for root access
MYSQL_ROOT_PASSWORD: 'password'
ports:
# <Port exposed> : < MySQL Port running inside container>
- '3306:3306'
expose:
# Opens port 3306 on the container
- '3306'
# Where our data will be persisted
volumes:
- my-db:/var/lib/mysql
- ./sql:/scripts
python:
image: python:slim-bullseye
# restart: always
depends_on:
- mysql
ports:
- '8000:8000'
expose:
- '8000'
volumes:
- .:/app
command: bash -c 'cd /app; pip install -r requirements.txt; python manage.py migrate; python manage.py runserver 0.0.0.0:8000'
# Names our volume
volumes:
my-db: