forked from science-ation/science-ation
Use official images
This commit is contained in:
parent
44b29ae38f
commit
50a719ef12
@ -1,11 +1,16 @@
|
|||||||
FROM php:8-apache
|
FROM mcr.microsoft.com/devcontainers/php:1-${templateOption:imageVariant}
|
||||||
|
|
||||||
RUN apt-get update && apt-get upgrade && apt-get install -y imagemagick git
|
# Install MariaDB client
|
||||||
|
RUN apt-get update && export DEBIAN_FRONTEND=noninteractive \
|
||||||
|
&& apt-get install -y mariadb-client \
|
||||||
|
&& apt-get clean -y && rm -rf /var/lib/apt/lists/*
|
||||||
|
|
||||||
RUN a2enmod ssl && a2enmod rewrite
|
# Install php-mysql driver
|
||||||
|
RUN docker-php-ext-install mysqli pdo pdo_mysql
|
||||||
|
|
||||||
# Built-in tool for adding modules
|
# [Optional] Uncomment this section to install additional OS packages.
|
||||||
RUN docker-php-ext-install pdo pdo_mysql
|
# RUN apt-get update && export DEBIAN_FRONTEND=noninteractive \
|
||||||
|
# && apt-get -y install --no-install-recommends <your-package-list-here>
|
||||||
|
|
||||||
RUN chmod u+s,g+s /var/www/html/
|
# [Optional] Uncomment this line to install global node packages.
|
||||||
RUN chown -R www-data:www-data /var/www/html/
|
# RUN su vscode -c "source /usr/local/share/nvm/nvm.sh && npm install -g <your-package-here>" 2>&1
|
@ -1,40 +1,23 @@
|
|||||||
// For format details, see https://aka.ms/devcontainer.json. For config options, see the
|
// For format details, see https://aka.ms/devcontainer.json. For config options, see the
|
||||||
// README at: https://github.com/devcontainers/templates/tree/main/src/docker-existing-docker-compose
|
// README at: https://github.com/devcontainers/templates/tree/main/src/php-mariadb
|
||||||
{
|
{
|
||||||
"name": "Existing Docker Compose (Extend)",
|
"name": "PHP & MariaDB",
|
||||||
|
"dockerComposeFile": "docker-compose.yml",
|
||||||
// Update the 'dockerComposeFile' list if you have more compose files or use different names.
|
"service": "app",
|
||||||
// The .devcontainer/docker-compose.yml file contains any overrides you need/want to make.
|
"workspaceFolder": "/workspaces/${localWorkspaceFolderBasename}",
|
||||||
"dockerComposeFile": [
|
|
||||||
"../.devcontainer/docker-compose.yml"
|
|
||||||
],
|
|
||||||
|
|
||||||
// The 'service' property is the name of the service for the container that VS Code should
|
|
||||||
// use. Update this value and .devcontainer/docker-compose.yml to the real service name.
|
|
||||||
"service": "web",
|
|
||||||
|
|
||||||
// The optional 'workspaceFolder' property is the path VS Code should open by default when
|
|
||||||
// connected. This is typically a file mount in .devcontainer/docker-compose.yml
|
|
||||||
"workspaceFolder": "/workspaces/${localWorkspaceFolderBasename}"
|
|
||||||
|
|
||||||
// Features to add to the dev container. More info: https://containers.dev/features.
|
// Features to add to the dev container. More info: https://containers.dev/features.
|
||||||
// "features": {},
|
// "features": {},
|
||||||
|
|
||||||
// Use 'forwardPorts' to make a list of ports inside the container available locally.
|
// For use with PHP or Apache (e.g.php -S localhost:8080 or apache2ctl start)
|
||||||
// "forwardPorts": [],
|
"forwardPorts": [8080, 3306]
|
||||||
|
|
||||||
// Uncomment the next line if you want start specific services in your Docker Compose config.
|
// Use 'postCreateCommand' to run commands after the container is created.
|
||||||
// "runServices": [],
|
// "postCreateCommand": "sudo chmod a+x \"$(pwd)\" && sudo rm -rf /var/www/html && sudo ln -s \"$(pwd)\" /var/www/html"
|
||||||
|
|
||||||
// Uncomment the next line if you want to keep your containers running after VS Code shuts down.
|
|
||||||
// "shutdownAction": "none",
|
|
||||||
|
|
||||||
// Uncomment the next line to run commands after the container is created.
|
|
||||||
// "postCreateCommand": "cat /etc/os-release",
|
|
||||||
|
|
||||||
// Configure tool-specific properties.
|
// Configure tool-specific properties.
|
||||||
// "customizations": {},
|
// "customizations": {},
|
||||||
|
|
||||||
// Uncomment to connect as an existing user other than the container default. More info: https://aka.ms/dev-containers-non-root.
|
// Uncomment to connect as root instead. More info: https://aka.ms/dev-containers-non-root.
|
||||||
// "remoteUser": "devcontainer"
|
// "remoteUser": "root"
|
||||||
}
|
}
|
@ -1,25 +1,36 @@
|
|||||||
services:
|
version: '3.8'
|
||||||
web:
|
|
||||||
|
services:
|
||||||
|
app:
|
||||||
build:
|
build:
|
||||||
context: .
|
context: .
|
||||||
dockerfile: Dockerfile
|
dockerfile: Dockerfile
|
||||||
|
|
||||||
volumes:
|
volumes:
|
||||||
- ../..:/workspaces:cached
|
- ../..:/workspaces:cached
|
||||||
ports:
|
|
||||||
- 8085:80
|
# Overrides default command so things don't shut down after the process ends.
|
||||||
depends_on:
|
command: sleep infinity
|
||||||
- db
|
|
||||||
|
# Runs app on the same network as the database container, allows "forwardPorts" in devcontainer.json function.
|
||||||
|
network_mode: service:db
|
||||||
|
|
||||||
|
# Use "forwardPorts" in **devcontainer.json** to forward an app port locally.
|
||||||
|
# (Adding the "ports" property to this file will not forward from a Codespace.)
|
||||||
|
|
||||||
db:
|
db:
|
||||||
image: mariadb:latest
|
image: mariadb:10.4
|
||||||
command: --sql-mode=""
|
restart: unless-stopped
|
||||||
environment:
|
|
||||||
MYSQL_ROOT_PASSWORD: secret
|
|
||||||
MYSQL_DATABASE: sfiab
|
|
||||||
MYSQL_USER: sfiab
|
|
||||||
MYSQL_PASSWORD: ScienceFair123!
|
|
||||||
ports:
|
|
||||||
- 3306:3306
|
|
||||||
volumes:
|
volumes:
|
||||||
- db_data:/var/lib/mysql
|
- mariadb-data:/var/lib/mysql
|
||||||
|
environment:
|
||||||
|
MYSQL_ROOT_PASSWORD: mariadb
|
||||||
|
MYSQL_DATABASE: mariadb
|
||||||
|
MYSQL_USER: mariadb
|
||||||
|
MYSQL_PASSWORD: mariadb
|
||||||
|
|
||||||
|
# Add "forwardPorts": ["3306"] to **devcontainer.json** to forward MariaDB locally.
|
||||||
|
# (Adding the "ports" property to this file will not forward from a Codespace.)
|
||||||
|
|
||||||
volumes:
|
volumes:
|
||||||
db_data:
|
mariadb-data:
|
Loading…
x
Reference in New Issue
Block a user