docker-compose.yml
· 499 B · YAML
Sin formato
services:
bludit:
image: bludit/docker:latest
container_name: bludit
volumes:
- /home/debian/bludit:/usr/share/nginx/html/bl-content
- /home/debian/bludit/bludit-themes:/var/www/bludit/custom-plugins
- /home/debian/bludit/bludit-plugins:/var/www/bludit/custom-themes
ports:
- 6759:80
environment:
- TZ=Europe/Rome
restart: unless-stopped
networks:
- npm-network
networks:
npm-network:
name: npm-network
external: true
1 | services: |
2 | bludit: |
3 | image: bludit/docker:latest |
4 | container_name: bludit |
5 | volumes: |
6 | - /home/debian/bludit:/usr/share/nginx/html/bl-content |
7 | - /home/debian/bludit/bludit-themes:/var/www/bludit/custom-plugins |
8 | - /home/debian/bludit/bludit-plugins:/var/www/bludit/custom-themes |
9 | ports: |
10 | - 6759:80 |
11 | environment: |
12 | - TZ=Europe/Rome |
13 | restart: unless-stopped |
14 | networks: |
15 | - npm-network |
16 | |
17 | networks: |
18 | npm-network: |
19 | name: npm-network |
20 | external: true |
21 |