Skip to content

Commit e079d88

Browse files
committed
remove mysql db
1 parent 4b85034 commit e079d88

File tree

3 files changed

+4
-39
lines changed

3 files changed

+4
-39
lines changed

.devcontainer/Dockerfile_dev

+1-2
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,10 @@
11
FROM mcr.microsoft.com/devcontainers/python:3.12-bullseye
22

33
RUN apt-get update && export DEBIAN_FRONTEND=noninteractive \
4-
&& apt-get -y install --no-install-recommends default-mysql-server \
54
&& apt-get clean -y && rm -rf /var/lib/apt/lists/*
65

76

87
COPY requirements-dev.txt requirements-dev.txt
98
COPY src/requirements.txt src/requirements.txt
109
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

.devcontainer/devcontainer.json

+3-4
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
// For format details, see https://aka.ms/devcontainer.json. For config options, see the
22
// README at: https://github.com/devcontainers/templates/tree/main/src/docker-existing-docker-compose
33
{
4-
"name": "flask_api_mysql_db",
4+
"name": "flask_api_sqlite_db",
55

66
// Update the 'dockerComposeFile' list if you have more compose files or use different names.
77
// The .devcontainer/docker-compose.yml file contains any overrides you need/want to make.
@@ -13,8 +13,7 @@
1313
"workspaceFolder": "/workspace",
1414
"forwardPorts": [5000, 3306],
1515
"portsAttributes": {
16-
"5000": {"label": "Web port", "onAutoForward": "notify"},
17-
"3306": {"label": "MySQL Port", "onAutoForward": "silent"}
16+
"5000": {"label": "Web port", "onAutoForward": "notify"}
1817
},
1918
"customizations": {
2019
"vscode": {
@@ -49,4 +48,4 @@
4948
"ghcr.io/azure/azure-dev/azd:latest": {}
5049
},
5150
"postCreateCommand": "pip install -e src && python3 -m flask --app src/flaskapp db upgrade --directory src/flaskapp/migrations"
52-
}
51+
}

.devcontainer/docker-compose_dev.yml

-33
Original file line numberDiff line numberDiff line change
@@ -1,41 +1,8 @@
11
version: '3'
22
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-
213
app:
224
build:
235
context: ..
246
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
347

358
command: sleep infinity
36-
37-
volumes:
38-
- ..:/workspace:cached
39-
40-
volumes:
41-
mysql-data:

0 commit comments

Comments
 (0)