Initial commmit
This commit is contained in:
commit
88383f90e5
1174 changed files with 227188 additions and 0 deletions
18
docker-compose.yml
Normal file
18
docker-compose.yml
Normal file
|
|
@ -0,0 +1,18 @@
|
|||
version: "3"
|
||||
|
||||
services:
|
||||
web:
|
||||
container_name: movienight-web
|
||||
build:
|
||||
context: .
|
||||
dockerfile: Dockerfile
|
||||
|
||||
db:
|
||||
container_name: movienight_db
|
||||
image: mariadb
|
||||
restart: always
|
||||
ports:
|
||||
- "3307:3306"
|
||||
env_file: .env
|
||||
volumes:
|
||||
- ./init:/docker-entrypoint-initdb.d
|
||||
Loading…
Add table
Add a link
Reference in a new issue