Simple website with some JavaScript games.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 

24 lines
340 B

# Php-fpm configuration
services:
php-panda:
build: ./php_docker/
volumes:
- .:/app/public
networks:
- panda-net
web-panda:
build: .
ports:
- "5000:80"
volumes:
- .:/app/public
depends_on:
- php-panda
networks:
- panda-net
networks:
panda-net:
driver: bridge