mirror of
https://github.com/nicotsx/ironmount.git
synced 2025-12-10 12:10:51 +01:00
25 lines
555 B
YAML
25 lines
555 B
YAML
services:
|
|
ironmount:
|
|
build:
|
|
context: .
|
|
dockerfile: Dockerfile.dev
|
|
container_name: ironmount
|
|
restart: unless-stopped
|
|
cap_add:
|
|
- SYS_ADMIN
|
|
- SYS_MODULE
|
|
ports:
|
|
- "8080:8080"
|
|
# security_opt:
|
|
# - apparmor:unconfined
|
|
volumes:
|
|
- /var/run/docker.sock:/var/run/docker.sock
|
|
- /run/docker/plugins:/run/docker/plugins
|
|
|
|
- ./:/app/
|
|
|
|
- /home/nicolas/ironmount/tmp:/mounts:rshared
|
|
environment:
|
|
- GO_ENV=development
|
|
- VOLUME_ROOT=/home/nicolas/ironmount/tmp
|