update
This commit is contained in:
parent
78d8806d05
commit
56673b9bb7
3 changed files with 74 additions and 0 deletions
16
docker-compose.yml
Normal file
16
docker-compose.yml
Normal file
|
|
@ -0,0 +1,16 @@
|
|||
services:
|
||||
dashboard:
|
||||
image: nginx:alpine
|
||||
container_name: dashboard
|
||||
restart: always
|
||||
volumes:
|
||||
- ./data/frontend:/usr/share/nginx/html:ro
|
||||
ports:
|
||||
- "8882:80" # ou laisse tomber si tu utilises Traefik derrière
|
||||
networks:
|
||||
- default
|
||||
- nginx_net
|
||||
|
||||
networks:
|
||||
nginx_net:
|
||||
external: true
|
||||
Loading…
Add table
Add a link
Reference in a new issue