statup: container_name: statup image: hunterlong/statup restart: always ports: - 8080:8080 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