Sha256: 47c3a88b07572688aa7e654a8c87818784de3a9df03e9e1254e3eb5422eb76a0
Contents?: true
Size: 921 Bytes
Versions: 9
Compression:
Stored size: 921 Bytes
Contents
services: declare_schema: build: context: .. dockerfile: .devcontainer/Dockerfile volumes: - ../..:/workspaces:cached # Overrides default command so things don't shut down after the process ends. command: sleep infinity depends_on: - postgres - mariadb # Use "forwardPorts" in **devcontainer.json** to forward an app port locally. # (Adding the "ports" property to this file will not forward from a Codespace.) postgres: image: postgres:latest restart: unless-stopped volumes: - postgres-data:/var/lib/postgresql/data environment: POSTGRES_USER: postgres POSTGRES_DB: postgres POSTGRES_PASSWORD: postgres mariadb: image: mariadb:latest restart: unless-stopped volumes: - mariadb-data:/var/lib/mysql environment: MARIADB_ROOT_PASSWORD: root volumes: postgres-data: mariadb-data:
Version data entries
9 entries across 9 versions & 1 rubygems