Initial commit
This commit is contained in:
commit
d9bea9eb37
4 changed files with 207 additions and 0 deletions
24
docker-compose.yml
Normal file
24
docker-compose.yml
Normal file
|
@ -0,0 +1,24 @@
|
|||
version: '3'
|
||||
|
||||
volumes:
|
||||
database_data:
|
||||
driver: local
|
||||
|
||||
services:
|
||||
re2o:
|
||||
build: .
|
||||
ports:
|
||||
- "8080:80"
|
||||
volumes:
|
||||
- .:/var/www/re2o
|
||||
db:
|
||||
image: postgres:latest
|
||||
expose:
|
||||
- 3306
|
||||
volumes:
|
||||
- database_data:/var/lib/postgresql/data
|
||||
environment:
|
||||
POSTGRES_PASSWORD: plopiplop
|
||||
POSTGRES_DB: re2o
|
||||
POSTGRES_USER: re2o
|
||||
MYSQL_PASSWORD: plopiplop
|
Loading…
Add table
Add a link
Reference in a new issue