gistfile1.txt
· 353 B · Text
Raw
version: '3'
services:
startpage:
container_name: docker-php-startpage
restart: unless-stopped
networks:
- startpage
ports:
- '8888:80'
volumes:
- 'user_includes:/var/www/html/user_includes'
image: loganmarchione/docker-php-startpage:latest
networks:
startpage:
volumes:
user_includes:
driver: local
1 | version: '3' |
2 | services: |
3 | startpage: |
4 | container_name: docker-php-startpage |
5 | restart: unless-stopped |
6 | networks: |
7 | - startpage |
8 | ports: |
9 | - '8888:80' |
10 | volumes: |
11 | - 'user_includes:/var/www/html/user_includes' |
12 | image: loganmarchione/docker-php-startpage:latest |
13 | |
14 | networks: |
15 | startpage: |
16 | |
17 | volumes: |
18 | user_includes: |
19 | driver: local |