14 lines
356 B
YAML
14 lines
356 B
YAML
services:
|
|
app:
|
|
image: gitea.malio.fr/malio-dev/sirh:${SIRH_IMAGE_TAG:-latest}
|
|
container_name: sirh-app
|
|
env_file: .env
|
|
ports:
|
|
- "8080:80"
|
|
volumes:
|
|
- ./config/jwt:/var/www/html/config/jwt:ro
|
|
- ./uploads:/var/www/html/var/uploads
|
|
extra_hosts:
|
|
- "host.docker.internal:host-gateway"
|
|
restart: unless-stopped
|