statping/dev/docker-compose.yml

30 lines
522 B
YAML
Raw Normal View History

2018-11-06 07:15:55 +00:00
statup:
container_name: statup
image: hunterlong/statup
restart: always
ports:
- 8080:8080
2018-09-19 06:12:42 +00:00
postgres:
container_name: postgres
image: postgres
restart: always
ports:
- 5432:5432
environment:
POSTGRES_PASSWORD: password123
POSTGRES_USER: root
POSTGRES_DB: root
mysql:
container_name: mysql
image: mysql:5.6
restart: always
ports:
- 3306:3306
environment:
MYSQL_ROOT_PASSWORD: password123
MYSQL_DATABASE: root
MYSQL_USER: root
MYSQL_PASSWORD: password123