23 lines
564 B
YAML
23 lines
564 B
YAML
version: '3.7'
|
|
services:
|
|
front:
|
|
image: registry.verdnatura.es/salix-front:${VERSION:?}
|
|
build:
|
|
context: front
|
|
back:
|
|
image: registry.verdnatura.es/salix-back:${VERSION:?}
|
|
build:
|
|
context: .
|
|
dockerfile: back/Dockerfile
|
|
volumes:
|
|
- ./storage:/salix/storage
|
|
db:
|
|
image: db
|
|
build:
|
|
context: .
|
|
dockerfile: db/Dockerfile
|
|
target: db
|
|
volumes:
|
|
- /var/run/docker.sock:/var/run/docker.sock
|
|
user: root
|