science-ation/.devcontainer/docker-compose.yml

35 lines
1018 B
YAML
Raw Permalink Normal View History

2025-01-06 19:51:31 +00:00
services:
app:
2025-01-06 16:33:07 +00:00
build:
context: .
2025-01-06 16:46:44 +00:00
dockerfile: Dockerfile
2025-01-06 19:40:38 +00:00
volumes:
- ../..:/workspaces:cached
2025-01-06 19:51:31 +00:00
# Overrides default command so things don't shut down after the process ends.
command: sleep infinity
# 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.)
depends_on:
- db
2025-01-06 19:51:31 +00:00
2025-01-06 16:33:07 +00:00
db:
2025-01-30 03:40:01 +00:00
image: mariadb:11.6
2025-01-06 19:51:31 +00:00
restart: unless-stopped
2025-01-06 16:33:07 +00:00
volumes:
2025-01-06 19:51:31 +00:00
- 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.)
2025-01-06 16:33:07 +00:00
volumes:
2025-01-06 19:51:31 +00:00
mariadb-data: