mirror of
https://code.castopod.org/adaures/castopod
synced 2025-04-22 16:51:20 +00:00

- rename podlibre to adaures - rename castopod-host to castopod - simplify README and redirect to docs site - move INSTALL and UPDATE docs - add new gitlabci pipeline to deploy docs - upgrade node to v16 in Dockerfile
11 lines
376 B
YAML
11 lines
376 B
YAML
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:cached
|
|
|
|
# Overrides default command so things don't shut down after the process ends.
|
|
command: /bin/sh -c "while sleep 1000; do :; done"
|