mirror of
https://github.com/Steffo99/distributed-arcade.git
synced 2024-11-22 08:04:26 +00:00
23 lines
344 B
YAML
23 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
|