Add docker-compose env
This commit is contained in:
parent
5aeedf7adc
commit
f6b7d69dcf
24
docker-compose.yml
Normal file
24
docker-compose.yml
Normal file
|
@ -0,0 +1,24 @@
|
||||||
|
---
|
||||||
|
version: "3.7"
|
||||||
|
|
||||||
|
services:
|
||||||
|
db:
|
||||||
|
image: mysql:5
|
||||||
|
environment:
|
||||||
|
- MYSQL_ROOT_PASSWORD=password
|
||||||
|
- MYSQL_DATABASE=brigate
|
||||||
|
- MYSQL_USER=brigate
|
||||||
|
- MYSQL_PASSWORD=password
|
||||||
|
volumes:
|
||||||
|
- /var/lib/mysql
|
||||||
|
- ./sql/mysql/:/docker-entrypoint-initdb.d/
|
||||||
|
ports:
|
||||||
|
- 3306:3306
|
||||||
|
|
||||||
|
brigate:
|
||||||
|
build:
|
||||||
|
dockerfile: ./Dockerfile
|
||||||
|
context: .
|
||||||
|
image: unit/centralino_brigate:0.1.0
|
||||||
|
ports:
|
||||||
|
- 8080:8080
|
|
@ -1,4 +1,4 @@
|
||||||
SET database = brigate;
|
USE brigate;
|
||||||
|
|
||||||
CREATE TABLE contatti (
|
CREATE TABLE contatti (
|
||||||
nome VARCHAR(255) NOT NULL,
|
nome VARCHAR(255) NOT NULL,
|
Loading…
Reference in New Issue
Block a user