32 lines
971 B
YAML
32 lines
971 B
YAML
|
version: "3.8"
|
||
|
|
||
|
services:
|
||
|
api:
|
||
|
build:
|
||
|
context: "."
|
||
|
dockerfile: "Dockerfile"
|
||
|
args:
|
||
|
# Update 'VARIANT' to pick a Python version.
|
||
|
# Append -bookworm, -bullseye or -buster to pin to an OS version.
|
||
|
# Use -bookworm or -bullseye variants on local on arm64/Apple Silicon.
|
||
|
VARIANT: "3.12-bookworm"
|
||
|
NODE_VERSION: "none"
|
||
|
|
||
|
environment:
|
||
|
TZ: "Europe/Berlin"
|
||
|
|
||
|
volumes:
|
||
|
- "../..:/workspaces/ovdashboard:cached"
|
||
|
|
||
|
# Overrides default command so things don't shut down after the process ends.
|
||
|
command: "sleep infinity"
|
||
|
|
||
|
# Runs app on the same network as the redis container, allows "forwardPorts" in devcontainer.json function.
|
||
|
network_mode: "service:redis"
|
||
|
|
||
|
# Use "forwardPorts" in **devcontainer.json** to forward an app port locally.
|
||
|
# (Adding the "ports" property to this file will not forward from a Codespace.)
|
||
|
|
||
|
redis:
|
||
|
image: "redis:7"
|
||
|
restart: "unless-stopped"
|