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