File tree 3 files changed +4
-39
lines changed
3 files changed +4
-39
lines changed Original file line number Diff line number Diff line change 1
1
FROM mcr.microsoft.com/devcontainers/python:3.12-bullseye
2
2
3
3
RUN apt-get update && export DEBIAN_FRONTEND=noninteractive \
4
- && apt-get -y install --no-install-recommends default-mysql-server \
5
4
&& apt-get clean -y && rm -rf /var/lib/apt/lists/*
6
5
7
6
8
7
COPY requirements-dev.txt requirements-dev.txt
9
8
COPY src/requirements.txt src/requirements.txt
10
9
RUN python -m pip install --upgrade pip
11
- RUN python -m pip install -r requirements-dev.txt
10
+ RUN python -m pip install -r requirements-dev.txt
Original file line number Diff line number Diff line change 1
1
// For format details, see https://aka.ms/devcontainer.json. For config options, see the
2
2
// README at: https://github.com/devcontainers/templates/tree/main/src/docker-existing-docker-compose
3
3
{
4
- "name" : " flask_api_mysql_db " ,
4
+ "name" : " flask_api_sqlite_db " ,
5
5
6
6
// Update the 'dockerComposeFile' list if you have more compose files or use different names.
7
7
// The .devcontainer/docker-compose.yml file contains any overrides you need/want to make.
13
13
"workspaceFolder" : " /workspace" ,
14
14
"forwardPorts" : [5000 , 3306 ],
15
15
"portsAttributes" : {
16
- "5000" : {"label" : " Web port" , "onAutoForward" : " notify" },
17
- "3306" : {"label" : " MySQL Port" , "onAutoForward" : " silent" }
16
+ "5000" : {"label" : " Web port" , "onAutoForward" : " notify" }
18
17
},
19
18
"customizations" : {
20
19
"vscode" : {
49
48
"ghcr.io/azure/azure-dev/azd:latest" : {}
50
49
},
51
50
"postCreateCommand" : " pip install -e src && python3 -m flask --app src/flaskapp db upgrade --directory src/flaskapp/migrations"
52
- }
51
+ }
Original file line number Diff line number Diff line change 1
1
version : ' 3'
2
2
services :
3
- db :
4
- image : mysql:latest
5
-
6
- environment :
7
- MYSQL_ROOT_PASSWORD : mysql
8
- MYSQL_DATABASE : relecloud
9
-
10
- restart : unless-stopped
11
-
12
- volumes :
13
- - mysql-data:/var/lib/mysql
14
-
15
- healthcheck :
16
- test : ["CMD-SHELL", "mysqladmin ping"]
17
- interval : 10s
18
- timeout : 5s
19
- retries : 5
20
-
21
3
app :
22
4
build :
23
5
context : ..
24
6
dockerfile : ./.devcontainer/Dockerfile_dev
25
- depends_on :
26
- db :
27
- condition : service_healthy
28
- network_mode : service:db
29
- environment :
30
- MYSQL_HOST : db
31
- MYSQL_USER : root
32
- MYSQL_PASS : mysql
33
- MYSQL_DATABASE : relecloud
34
7
35
8
command : sleep infinity
36
-
37
- volumes :
38
- - ..:/workspace:cached
39
-
40
- volumes :
41
- mysql-data:
You can’t perform that action at this time.
0 commit comments