varo-website/.devcontainer/docker-compose.yml
bytedream 60f3f8a096
Some checks failed
deploy / build-and-deploy (push) Failing after 21s
initial commit
2025-05-18 13:16:20 +02:00

24 lines
479 B
YAML

services:
app:
build:
context: ..
dockerfile: .devcontainer/Dockerfile
command: sleep infinity
depends_on:
- db
environment:
DATABASE_URL: mysql://website:website@db:3306/website
ports:
- '4321:4321'
db:
image: mariadb:latest
environment:
MARIADB_ROOT_PASSWORD: root
MARIADB_DATABASE: website
MARIADB_USER: website
MARIADB_PASSWORD: website
ports:
- '3306:3306'
restart: always