castopod/.devcontainer/docker-compose.yml

11 lines
381 B
YAML
Raw Normal View History

version: "3"
services:
app:
volumes:
# Mounts the project folder to '/workspace'. While this file is in .devcontainer,
# mounts are relative to the first file in the list, which is a level up.
- .:/castopod-host:cached
# Overrides default command so things don't shut down after the process ends.
command: /bin/sh -c "while sleep 1000; do :; done"