1
Fork 0
mirror of https://github.com/Steffo99/distributed-arcade.git synced 2024-10-16 06:27:30 +00:00
distributed-arcade/.devcontainer/docker-compose.yml

22 lines
344 B
YAML

version: '3.8'
volumes:
postgres-data:
services:
app:
image: "mcr.microsoft.com/devcontainers/rust"
command: sleep infinity
security_opt:
- "seccomp:unconfined"
cap_add:
- "SYS_PTRACE"
volumes:
- "../..:/workspaces:cached"
env_file: ".env"
db:
image: "redis"
restart: unless-stopped